nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | /*--------------------------------------------------------------- |
2 | * Copyright (c) 1999,2000,2001,2002,2003 |
||
3 | * The Board of Trustees of the University of Illinois |
||
4 | * All Rights Reserved. |
||
5 | *--------------------------------------------------------------- |
||
6 | * Permission is hereby granted, free of charge, to any person |
||
7 | * obtaining a copy of this software (Iperf) and associated |
||
8 | * documentation files (the "Software"), to deal in the Software |
||
9 | * without restriction, including without limitation the |
||
10 | * rights to use, copy, modify, merge, publish, distribute, |
||
11 | * sublicense, and/or sell copies of the Software, and to permit |
||
12 | * persons to whom the Software is furnished to do |
||
13 | * so, subject to the following conditions: |
||
14 | * |
||
15 | * |
||
16 | * Redistributions of source code must retain the above |
||
17 | * copyright notice, this list of conditions and |
||
18 | * the following disclaimers. |
||
19 | * |
||
20 | * |
||
21 | * Redistributions in binary form must reproduce the above |
||
22 | * copyright notice, this list of conditions and the following |
||
23 | * disclaimers in the documentation and/or other materials |
||
24 | * provided with the distribution. |
||
25 | * |
||
26 | * |
||
27 | * Neither the names of the University of Illinois, NCSA, |
||
28 | * nor the names of its contributors may be used to endorse |
||
29 | * or promote products derived from this Software without |
||
30 | * specific prior written permission. |
||
31 | * |
||
32 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
||
33 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES |
||
34 | * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
||
35 | * NONINFRINGEMENT. IN NO EVENT SHALL THE CONTIBUTORS OR COPYRIGHT |
||
36 | * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
||
37 | * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
||
38 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
||
39 | * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
||
40 | * ________________________________________________________________ |
||
41 | * National Laboratory for Applied Network Research |
||
42 | * National Center for Supercomputing Applications |
||
43 | * University of Illinois at Urbana-Champaign |
||
44 | * http://www.ncsa.uiuc.edu |
||
45 | * ________________________________________________________________ |
||
46 | * |
||
47 | * Socket.cpp |
||
48 | * by Ajay Tirumala <tirumala@ncsa.uiuc.edu> |
||
49 | * and Mark Gates <mgates@nlanr.net> |
||
50 | * ------------------------------------------------------------------- */ |
||
51 | |||
52 | |||
53 | #ifndef SOCKET_ADDR_H |
||
54 | #define SOCKET_ADDR_H |
||
55 | |||
56 | #include "headers.h" |
||
57 | #include "Settings.hpp" |
||
58 | |||
59 | |||
60 | #ifdef __cplusplus |
||
61 | extern "C" { |
||
62 | #endif |
||
63 | /* ------------------------------------------------------------------- */ |
||
64 | void SockAddr_localAddr( thread_Settings *inSettings ); |
||
65 | void SockAddr_remoteAddr( thread_Settings *inSettings ); |
||
66 | |||
67 | void SockAddr_setHostname( const char* inHostname, |
||
68 | iperf_sockaddr *inSockAddr, |
||
69 | int isIPv6 ); // DNS lookup |
||
70 | void SockAddr_getHostname( iperf_sockaddr *inSockAddr, |
||
71 | char* outHostname, |
||
72 | size_t len ); // reverse DNS lookup |
||
73 | void SockAddr_getHostAddress( iperf_sockaddr *inSockAddr, |
||
74 | char* outAddress, |
||
75 | size_t len ); // dotted decimal |
||
76 | |||
77 | void SockAddr_setPort( iperf_sockaddr *inSockAddr, unsigned short inPort ); |
||
78 | void SockAddr_setPortAny( iperf_sockaddr *inSockAddr ); |
||
79 | unsigned short SockAddr_getPort( iperf_sockaddr *inSockAddr ); |
||
80 | |||
81 | void SockAddr_setAddressAny( iperf_sockaddr *inSockAddr ); |
||
82 | |||
83 | // return pointer to the struct in_addr |
||
84 | struct in_addr* SockAddr_get_in_addr( iperf_sockaddr *inSockAddr ); |
||
85 | #ifdef HAVE_IPV6 |
||
86 | // return pointer to the struct in_addr |
||
87 | struct in6_addr* SockAddr_get_in6_addr( iperf_sockaddr *inSockAddr ); |
||
88 | #endif |
||
89 | // return the sizeof the addess structure (struct sockaddr_in) |
||
90 | Socklen_t SockAddr_get_sizeof_sockaddr( iperf_sockaddr *inSockAddr ); |
||
91 | |||
92 | int SockAddr_isMulticast( iperf_sockaddr *inSockAddr ); |
||
93 | |||
94 | int SockAddr_isIPv6( iperf_sockaddr *inSockAddr ); |
||
95 | |||
96 | int SockAddr_are_Equal( struct sockaddr *first, struct sockaddr *second ); |
||
97 | int SockAddr_Hostare_Equal( struct sockaddr *first, struct sockaddr *second ); |
||
98 | |||
99 | void SockAddr_zeroAddress( iperf_sockaddr *inSockAddr ); |
||
100 | #ifdef __cplusplus |
||
101 | } /* end extern "C" */ |
||
102 | #endif |
||
103 | |||
104 | #endif /* SOCKET_ADDR_H */ |