andrew@0
|
1 /*
|
andrew@0
|
2 oscpack -- Open Sound Control packet manipulation library
|
andrew@0
|
3 http://www.audiomulch.com/~rossb/oscpack
|
andrew@0
|
4
|
andrew@0
|
5 Copyright (c) 2004-2005 Ross Bencina <rossb@audiomulch.com>
|
andrew@0
|
6
|
andrew@0
|
7 Permission is hereby granted, free of charge, to any person obtaining
|
andrew@0
|
8 a copy of this software and associated documentation files
|
andrew@0
|
9 (the "Software"), to deal in the Software without restriction,
|
andrew@0
|
10 including without limitation the rights to use, copy, modify, merge,
|
andrew@0
|
11 publish, distribute, sublicense, and/or sell copies of the Software,
|
andrew@0
|
12 and to permit persons to whom the Software is furnished to do so,
|
andrew@0
|
13 subject to the following conditions:
|
andrew@0
|
14
|
andrew@0
|
15 The above copyright notice and this permission notice shall be
|
andrew@0
|
16 included in all copies or substantial portions of the Software.
|
andrew@0
|
17
|
andrew@0
|
18 Any person wishing to distribute modifications to the Software is
|
andrew@0
|
19 requested to send the modifications to the original developer so that
|
andrew@0
|
20 they can be incorporated into the canonical version.
|
andrew@0
|
21
|
andrew@0
|
22 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
andrew@0
|
23 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
andrew@0
|
24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
andrew@0
|
25 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
andrew@0
|
26 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
andrew@0
|
27 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
andrew@0
|
28 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
andrew@0
|
29 */
|
andrew@0
|
30 #ifndef INCLUDED_IPENDPOINTNAME_H
|
andrew@0
|
31 #define INCLUDED_IPENDPOINTNAME_H
|
andrew@0
|
32
|
andrew@0
|
33
|
andrew@0
|
34 class IpEndpointName{
|
andrew@0
|
35 static unsigned long GetHostByName( const char *s );
|
andrew@0
|
36 public:
|
andrew@0
|
37 static const unsigned long ANY_ADDRESS = 0xFFFFFFFF;
|
andrew@0
|
38 static const int ANY_PORT = -1;
|
andrew@0
|
39
|
andrew@0
|
40 IpEndpointName()
|
andrew@0
|
41 : address( ANY_ADDRESS ), port( ANY_PORT ) {}
|
andrew@0
|
42 IpEndpointName( int port_ )
|
andrew@0
|
43 : address( ANY_ADDRESS ), port( port_ ) {}
|
andrew@0
|
44 IpEndpointName( unsigned long ipAddress_, int port_ )
|
andrew@0
|
45 : address( ipAddress_ ), port( port_ ) {}
|
andrew@0
|
46 IpEndpointName( const char *addressName, int port_=ANY_PORT )
|
andrew@0
|
47 : address( GetHostByName( addressName ) )
|
andrew@0
|
48 , port( port_ ) {}
|
andrew@0
|
49 IpEndpointName( int addressA, int addressB, int addressC, int addressD, int port_=ANY_PORT )
|
andrew@0
|
50 : address( ( (addressA << 24) | (addressB << 16) | (addressC << 8) | addressD ) )
|
andrew@0
|
51 , port( port_ ) {}
|
andrew@0
|
52
|
andrew@0
|
53 // address and port are maintained in host byte order here
|
andrew@0
|
54 unsigned long address;
|
andrew@0
|
55 int port;
|
andrew@0
|
56
|
andrew@0
|
57 enum { ADDRESS_STRING_LENGTH=17 };
|
andrew@0
|
58 void AddressAsString( char *s ) const;
|
andrew@0
|
59
|
andrew@0
|
60 enum { ADDRESS_AND_PORT_STRING_LENGTH=23};
|
andrew@0
|
61 void AddressAndPortAsString( char *s ) const;
|
andrew@0
|
62 };
|
andrew@0
|
63
|
andrew@0
|
64 inline bool operator==( const IpEndpointName& lhs, const IpEndpointName& rhs )
|
andrew@0
|
65 {
|
andrew@0
|
66 return (lhs.address == rhs.address && lhs.port == rhs.port );
|
andrew@0
|
67 }
|
andrew@0
|
68
|
andrew@0
|
69 inline bool operator!=( const IpEndpointName& lhs, const IpEndpointName& rhs )
|
andrew@0
|
70 {
|
andrew@0
|
71 return !(lhs == rhs);
|
andrew@0
|
72 }
|
andrew@0
|
73
|
andrew@0
|
74 #endif /* INCLUDED_IPENDPOINTNAME_H */
|