Imported Upstream version 0.3
[debian/uanytun.git] / src / string_list.c
1 /*
2  *  uAnytun
3  *
4  *  uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
5  *  featured implementation uAnytun has no support for multiple connections
6  *  or synchronisation. It is a small single threaded implementation intended
7  *  to act as a client on small platforms.
8  *  The secure anycast tunneling protocol (satp) defines a protocol used
9  *  for communication between any combination of unicast and anycast
10  *  tunnel endpoints.  It has less protocol overhead than IPSec in Tunnel
11  *  mode and allows tunneling of every ETHER TYPE protocol (e.g.
12  *  ethernet, ip, arp ...). satp directly includes cryptography and
13  *  message authentication based on the methodes used by SRTP.  It is
14  *  intended to deliver a generic, scaleable and secure solution for
15  *  tunneling and relaying of packets of any protocol.
16  *  
17  *
18  *  Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
19  *
20  *  This file is part of uAnytun.
21  *
22  *  uAnytun is free software: you can redistribute it and/or modify
23  *  it under the terms of the GNU General Public License version 3 as
24  *  published by the Free Software Foundation.
25  *
26  *  uAnytun is distributed in the hope that it will be useful,
27  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
28  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29  *  GNU General Public License for more details.
30  *
31  *  You should have received a copy of the GNU General Public License
32  *  along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
33  */
34
35 #include <string.h>
36 #include <stdlib.h>
37 #include <stdio.h>
38
39 #include "string_list.h"
40
41 void string_list_init(string_list_t* list)
42 {
43   if(!list)
44     return;
45   
46   list->first_ = NULL;
47 }
48
49 void string_list_clear(string_list_t* list)
50 {
51   if(!list)
52     return;
53
54   while(list->first_) {
55     string_list_element_t* tmp;
56     tmp = list->first_;
57     list->first_ = tmp->next_;
58     if(tmp->string_)
59       free(tmp->string_);
60     free(tmp);
61   }
62 }
63
64 int string_list_add(string_list_t* list, const char* string)
65 {
66   if(!list)
67     return -1;
68
69   if(!list->first_) {
70     list->first_ = malloc(sizeof(string_list_element_t));
71     if(!list->first_)
72       return -2;
73
74     list->first_->next_ = 0;
75     list->first_->string_ = strdup(string);
76     if(!list->first_->string_) {
77       free(list->first_);
78       list->first_ = NULL;
79       return -2;
80     }
81   }
82   else {
83     string_list_element_t* tmp = list->first_;
84     while(tmp->next_)
85       tmp = tmp->next_;
86
87     tmp->next_  = malloc(sizeof(string_list_element_t));
88     if(!tmp->next_)
89       return -2;
90
91     tmp->next_->next_ = 0;
92     tmp->next_->string_ = strdup(string);
93     if(!tmp->next_->string_) {
94       free(list->first_);
95       list->first_ = NULL;
96       return -2;
97     }
98   }
99   return 0;
100 }
101
102 void string_list_print(string_list_t* list, const char* head, const char* tail)
103 {
104   if(!list)
105     return;
106   
107   string_list_element_t* tmp = list->first_;
108   while(tmp) {
109     printf("%s%s%s", head, tmp->string_, tail);
110     tmp = tmp->next_;
111   }
112 }