mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
1d3132c08f
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
27 lines
850 B
C
27 lines
850 B
C
|
|
/**
|
|
* \file
|
|
* \brief Header: Virtual File System: Network utilities
|
|
*/
|
|
|
|
#ifndef MC__VFS_NETUTIL_H
|
|
#define MC__VFS_NETUTIL_H
|
|
|
|
#include <signal.h>
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
extern SIG_ATOMIC_VOLATILE_T got_sigpipe;
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
void tcp_init (void);
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
#endif /* MC_VFS_NETUTIL_H */
|