nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 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.h
49 * by Kevin Gibbs <kgibbs@ncsa.uiuc.edu>
50 * -------------------------------------------------------------------
51 */
52  
53 #ifndef Iperf_LIST_H
54 #define Iperf_LIST_H
55  
56 #include "headers.h"
57 #include "Settings.hpp"
58 #include "Reporter.h"
59 #include "Mutex.h"
60  
61 /*
62 * List handling utilities to replace STD vector
63 */
64  
65 struct Iperf_ListEntry;
66  
67 /*
68 * A List entry that consists of a sockaddr
69 * a pointer to the Audience that sockaddr is
70 * associated with and a pointer to the next
71 * entry
72 */
73 struct Iperf_ListEntry {
74 iperf_sockaddr data;
75 MultiHeader *holder;
76 thread_Settings *server;
77 Iperf_ListEntry *next;
78 };
79  
80 extern Mutex clients_mutex;
81 extern Iperf_ListEntry *clients;
82  
83 /*
84 * Functions to modify or search the List
85 */
86 void Iperf_pushback ( Iperf_ListEntry *add, Iperf_ListEntry **root );
87  
88 void Iperf_delete ( iperf_sockaddr *del, Iperf_ListEntry **root );
89  
90 void Iperf_destroy ( Iperf_ListEntry **root );
91  
92 Iperf_ListEntry* Iperf_present ( iperf_sockaddr *find, Iperf_ListEntry *root );
93  
94 Iperf_ListEntry* Iperf_hostpresent ( iperf_sockaddr *find, Iperf_ListEntry *root );
95  
96 #endif