netutil.h 850 B

1234567891011121314151617181920212223242526
  1. /**
  2. * \file
  3. * \brief Header: Virtual File System: Network utilities
  4. */
  5. #ifndef MC__VFS_NETUTIL_H
  6. #define MC__VFS_NETUTIL_H
  7. #include <signal.h>
  8. /*** typedefs(not structures) and defined constants **********************************************/
  9. /*** enums ***************************************************************************************/
  10. /*** structures declarations (and typedefs of structures)*****************************************/
  11. /*** global variables defined in .c file *********************************************************/
  12. extern SIG_ATOMIC_VOLATILE_T got_sigpipe;
  13. /*** declarations of public functions ************************************************************/
  14. void tcp_init (void);
  15. /*** inline functions ****************************************************************************/
  16. #endif /* MC_VFS_NETUTIL_H */