Merge tag 'upstream/0.3.5'
[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 methods 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-2014 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 as published by
24  *  the Free Software Foundation, either version 3 of the License, or
25  *  any later version.
26  *
27  *  uAnytun is distributed in the hope that it will be useful,
28  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
29  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30  *  GNU General Public License for more details.
31  *
32  *  You should have received a copy of the GNU General Public License
33  *  along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
34  *
35  *  In addition, as a special exception, the copyright holders give
36  *  permission to link the code of portions of this program with the
37  *  OpenSSL library under certain conditions as described in each
38  *  individual source file, and distribute linked combinations
39  *  including the two.
40  *  You must obey the GNU General Public License in all respects
41  *  for all of the code used other than OpenSSL.  If you modify
42  *  file(s) with this exception, you may extend this exception to your
43  *  version of the file(s), but you are not obligated to do so.  If you
44  *  do not wish to do so, delete this exception statement from your
45  *  version.  If you delete this exception statement from all source
46  *  files in the program, then also delete it here.
47  */
48
49 #include <string.h>
50 #include <stdlib.h>
51 #include <stdio.h>
52
53 #include "string_list.h"
54
55 void string_list_init(string_list_t* list)
56 {
57   if(!list)
58     return;
59
60   list->first_ = NULL;
61 }
62
63 void string_list_clear(string_list_t* list)
64 {
65   if(!list)
66     return;
67
68   while(list->first_) {
69     string_list_element_t* tmp;
70     tmp = list->first_;
71     list->first_ = tmp->next_;
72     if(tmp->string_)
73       free(tmp->string_);
74     free(tmp);
75   }
76 }
77
78 int string_list_add(string_list_t* list, const char* string)
79 {
80   if(!list)
81     return -1;
82
83   if(!list->first_) {
84     list->first_ = malloc(sizeof(string_list_element_t));
85     if(!list->first_)
86       return -2;
87
88     list->first_->next_ = 0;
89     list->first_->string_ = strdup(string);
90     if(!list->first_->string_) {
91       free(list->first_);
92       list->first_ = NULL;
93       return -2;
94     }
95   }
96   else {
97     string_list_element_t* tmp = list->first_;
98     while(tmp->next_)
99       tmp = tmp->next_;
100
101     tmp->next_  = malloc(sizeof(string_list_element_t));
102     if(!tmp->next_)
103       return -2;
104
105     tmp->next_->next_ = 0;
106     tmp->next_->string_ = strdup(string);
107     if(!tmp->next_->string_) {
108       free(tmp->next_);
109       tmp->next_ = NULL;
110       return -2;
111     }
112   }
113   return 0;
114 }
115
116 void string_list_print(string_list_t* list, const char* head, const char* tail)
117 {
118   if(!list)
119     return;
120
121   string_list_element_t* tmp = list->first_;
122   while(tmp) {
123     printf("%s%s%s", head, tmp->string_, tail);
124     tmp = tmp->next_;
125   }
126 }