home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / inet.h < prev    next >
C/C++ Source or Header  |  2004-01-30  |  745b  |  36 lines

  1. /* arpa/inet.h
  2.  
  3.    Copyright 1997, 1998, 2001, 2002, 2003 Red Hat, Inc.
  4.  
  5. This file is part of Cygwin.
  6.  
  7. This software is a copyrighted work licensed under the terms of the
  8. Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
  9. details. */
  10.  
  11. #ifndef _ARPA_INET_H
  12. #define _ARPA_INET_H
  13.  
  14. #include <netinet/in.h>
  15.  
  16. #ifdef __cplusplus
  17. extern "C"
  18. {
  19. #endif
  20.  
  21. #ifndef __INSIDE_CYGWIN_NET__
  22. in_addr_t inet_addr (const char *);
  23. int inet_aton (const char *, struct in_addr *);
  24. in_addr_t inet_lnaof (struct in_addr);
  25. struct in_addr inet_makeaddr (unsigned long , unsigned long);
  26. in_addr_t inet_netof (struct in_addr);
  27. in_addr_t inet_network (const char *);
  28. char *inet_ntoa (struct in_addr);
  29. #endif
  30.  
  31. #ifdef __cplusplus
  32. };
  33. #endif
  34.  
  35. #endif /* _ARPA_INET_H */
  36.