2009-02-07 15:54:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* \brief Header: Virtual File System: Network utilities
|
|
|
|
*/
|
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
#ifndef MC__VFS_NETUTIL_H
|
|
|
|
#define MC__VFS_NETUTIL_H
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2010-07-10 14:51:54 +04:00
|
|
|
#include <signal.h>
|
2010-11-08 13:21:45 +03:00
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
2010-07-10 14:51:54 +04:00
|
|
|
|
|
|
|
extern volatile sig_atomic_t got_sigpipe;
|
2010-11-08 13:21:45 +03:00
|
|
|
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
void tcp_init (void);
|
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
/*** inline functions ****************************************************************************/
|
2010-07-10 14:51:54 +04:00
|
|
|
#endif /* MC_VFS_NETUTIL_H */
|