00001 00024 #ifndef __NETWORK_H 00025 #define __NETWORK_H 00026 00027 #include <sys/socket.h> 00028 #include <sys/types.h> 00029 #include <netinet/in.h> 00030 #include <arpa/inet.h> 00031 00032 #include "ntw.h" 00033 00034 int 00035 ntw_recv_data(void *data, int32 data_length); 00036 00037 int 00038 ntw_send_data(void *data, int32 data_length); 00039 00040 int 00041 ntw_establish_connection(int port); 00042 00043 00044 #endif