tcpip.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef __LOG_SERVER_SRC_TCPIP_H_
00015 #define __LOG_SERVER_SRC_TCPIP_H_
00016
00017 #include "config.h"
00018
00019 #if CONFIG_USE_TCPIP
00020
00021 #include <oskit/net/socket.h>
00022
00023 extern char *ip_addr, *netmask;
00024 extern oskit_socket_t*client_socket;
00025
00026
00027 extern oskit_socket_factory_t *socket_create;
00028 extern int net_init(int argc, char **argv);
00029 extern int net_wait_for_client(void);
00030 extern int net_receive_check(void);
00031 extern int net_flush_buffer(const char*addr, int size);
00032 #endif
00033
00034 #endif