|
qCNC 0.82-alpha
|
00001 00041 #ifndef NETWORK_H 00042 #define NETWORK_H 00043 00044 #include <stdlib.h> 00045 #include "Interfaces.h" 00046 00047 00048 00049 int connectSocket(char *host, int port); 00050 protocol *read_socket (int *socket, protocol *temp); 00051 int closeSocket(int *sock) ; 00052 int write_socket(int *sock, protocol *buffer); 00053 00054 00055 00056 00057 #endif