]> sjero.net Git - iperf/blob - src/List.cpp
Native IPv6 support for iperf
[iperf] / src / List.cpp
1
2 /*--------------------------------------------------------------- 
3  * Copyright (c) 1999,2000,2001,2002,2003                              
4  * The Board of Trustees of the University of Illinois            
5  * All Rights Reserved.                                           
6  *--------------------------------------------------------------- 
7  * Permission is hereby granted, free of charge, to any person    
8  * obtaining a copy of this software (Iperf) and associated       
9  * documentation files (the "Software"), to deal in the Software  
10  * without restriction, including without limitation the          
11  * rights to use, copy, modify, merge, publish, distribute,        
12  * sublicense, and/or sell copies of the Software, and to permit     
13  * persons to whom the Software is furnished to do
14  * so, subject to the following conditions: 
15  *
16  *     
17  * Redistributions of source code must retain the above 
18  * copyright notice, this list of conditions and 
19  * the following disclaimers. 
20  *
21  *     
22  * Redistributions in binary form must reproduce the above 
23  * copyright notice, this list of conditions and the following 
24  * disclaimers in the documentation and/or other materials 
25  * provided with the distribution. 
26  * 
27  *     
28  * Neither the names of the University of Illinois, NCSA, 
29  * nor the names of its contributors may be used to endorse 
30  * or promote products derived from this Software without
31  * specific prior written permission. 
32  * 
33  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
34  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
35  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
36  * NONINFRINGEMENT. IN NO EVENT SHALL THE CONTIBUTORS OR COPYRIGHT 
37  * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
38  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
39  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE
40  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 
41  * ________________________________________________________________
42  * National Laboratory for Applied Network Research 
43  * National Center for Supercomputing Applications 
44  * University of Illinois at Urbana-Champaign 
45  * http://www.ncsa.uiuc.edu
46  * ________________________________________________________________ 
47  *
48  * List.cpp
49  * by Kevin Gibbs <kgibbs@ncsa.uiuc.edu> 
50  * ------------------------------------------------------------------- 
51  */
52
53 #include "List.h"
54 #include "Mutex.h"
55 #include "SocketAddr.h"
56
57 /*
58  * Global List and Mutex variables
59  */
60 Iperf_ListEntry *clients = NULL;
61 Mutex clients_mutex; 
62
63 /*
64  * Add Entry add to the List
65  */
66 void Iperf_pushback ( Iperf_ListEntry *add, Iperf_ListEntry **root ) {
67     add->next = *root;
68     *root = add;
69 }
70
71 /*
72  * Delete Entry del from the List
73  */
74 void Iperf_delete (struct sockaddr_storage *del, Iperf_ListEntry **root)
75 {
76     Iperf_ListEntry *temp = Iperf_present( del, *root );
77     if ( temp != NULL ) {
78         if ( temp == *root ) {
79             *root = (*root)->next;
80         } else {
81             Iperf_ListEntry *itr = *root;
82             while ( itr->next != NULL ) {
83                 if ( itr->next == temp ) {
84                     itr->next = itr->next->next;
85                     break;
86                 }
87                 itr = itr->next;
88             }
89         }
90         delete temp;
91     }
92 }
93
94 /*
95  * Destroy the List (cleanup function)
96  */
97 void Iperf_destroy ( Iperf_ListEntry **root ) {
98     Iperf_ListEntry *itr1 = *root, *itr2;
99     while ( itr1 != NULL ) {
100         itr2 = itr1->next;
101         delete itr1;
102         itr1 = itr2;
103     }
104     *root = NULL;
105 }
106
107 /*
108  * Check if the exact Entry find is present
109  */
110 Iperf_ListEntry* Iperf_present(struct sockaddr_storage *find, Iperf_ListEntry *root)
111 {
112     Iperf_ListEntry *itr;
113
114     for (itr = root; itr != NULL; itr = itr->next)
115         if (SockAddr_are_Equal(find, &itr->data))
116             return itr;
117     return NULL;
118 }
119
120 /*
121  * Check if a Entry find is in the List or if any
122  * Entry exists that has the same host as the 
123  * Entry find
124  * FIXME: The `or' condition was not implemented
125  */
126 Iperf_ListEntry* Iperf_hostpresent(struct sockaddr_storage *find, Iperf_ListEntry *root)
127 {
128     return Iperf_present(find, root);
129 }