dcrud  0.0.0
Distributed data and services
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
InetSocketAddress.h
Go to the documentation of this file.
1 #pragma once
2 #ifdef __cplusplus
3 extern "C" {
4 #endif
5 
6 typedef struct ioInetSocketAddress_s {
7 
8  char inetAddress[16];
9  unsigned short port;
10 
12 
13 void ioInetSocketAddress_init( ioInetSocketAddress * This, const char * host, unsigned short port );
14 
15 ioInetSocketAddress * ioInetSocketAddress_new( const char * host, unsigned short port );
16 
18  const ioInetSocketAddress * left,
19  const ioInetSocketAddress * right );
20 
21 #ifdef __cplusplus
22 }
23 #endif
int ioInetSocketAddress_comparator(const ioInetSocketAddress *left, const ioInetSocketAddress *right)
void ioInetSocketAddress_init(ioInetSocketAddress *This, const char *host, unsigned short port)
ioInetSocketAddress * ioInetSocketAddress_new(const char *host, unsigned short port)
struct ioInetSocketAddress_s ioInetSocketAddress