/sys/mint/socket.h

https://github.com/freemint/freemint · C Header · 112 lines · 58 code · 14 blank · 40 comment · 0 complexity · bd3444ca5d21830d3c1bc434ec91beea MD5 · raw file

  1. /*
  2. * This file belongs to FreeMiNT. It's not in the original MiNT 1.12
  3. * distribution. See the file CHANGES for a detailed log of changes.
  4. *
  5. *
  6. * Copyright 2001 Frank Naumann <fnaumann@freemint.de>
  7. * Copyright 1993, 1994, 1995, 1996 Kay Roemer
  8. * All rights reserved.
  9. *
  10. * This file is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2, or (at your option)
  13. * any later version.
  14. *
  15. * This file is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23. *
  24. *
  25. * Author: Frank Naumann <fnaumann@freemint.de>
  26. * Started: 2001-01-12
  27. *
  28. * Please send suggestions, patches or bug reports to me or
  29. * the MiNT mailing list.
  30. *
  31. */
  32. # ifndef _mint_socket_h
  33. # define _mint_socket_h
  34. # include "iov.h"
  35. /* socket types */
  36. enum so_type
  37. {
  38. SOCK_STREAM = 1,
  39. SOCK_DGRAM,
  40. SOCK_RAW,
  41. SOCK_RDM,
  42. SOCK_SEQPACKET
  43. };
  44. /* protocol families */
  45. # define PF_UNSPEC 0
  46. # define PF_UNIX 1
  47. # define PF_INET 2
  48. # define PF_APPLETALK 5
  49. /* address families, same as above */
  50. # define AF_UNSPEC PF_UNSPEC
  51. # define AF_UNIX PF_UNIX
  52. # define AF_INET PF_INET
  53. # define AF_APPLETALK PF_APPLETALK
  54. # define AF_LINK 200
  55. /* flags for send and recv */
  56. # define MSG_OOB 1
  57. # define MSG_PEEK 2
  58. # define MSG_DONTROUTE 4
  59. /* [s|g]etsockopt() levels */
  60. # define SOL_SOCKET 0xffff
  61. /* [s|g]etsockopt() options */
  62. # define SO_DEBUG 1 /* debugging on/off */
  63. # define SO_REUSEADDR 2 /* duplicate socket addesses on/off */
  64. # define SO_TYPE 3 /* get socket type */
  65. # define SO_ERROR 4 /* reset socket error status */
  66. # define SO_DONTROUTE 5 /* routing of outgoing messages on/off */
  67. # define SO_BROADCAST 6 /* may datagramms be broadcast */
  68. # define SO_SNDBUF 7 /* set/get size of output buffer */
  69. # define SO_RCVBUF 8 /* set/get size of input buffer */
  70. # define SO_KEEPALIVE 9 /* periodically connection checking on/off*/
  71. # define SO_OOBINLINE 10 /* place oob-data in input queue on/off */
  72. # define SO_LINGER 11 /* what to do when closing a socket */
  73. # define SO_ACCEPTCONN 30
  74. # define SO_CHKSUM 40 /* switch checksum generation on/off */
  75. # define SO_DROPCONN 41 /* drop incoming conn. when accept() fails */
  76. /* structure to pass for SO_LINGER */
  77. struct linger
  78. {
  79. long l_onoff; /* when != 0, close() blocks */
  80. long l_linger; /* timeout in seconds */
  81. };
  82. /* generic socket address */
  83. struct sockaddr
  84. {
  85. short sa_family;
  86. char sa_data[14];
  87. };
  88. /* structure used with sendmsg() and recvmsg() */
  89. struct msghdr
  90. {
  91. struct sockaddr *msg_name;
  92. long msg_namelen;
  93. struct iovec *msg_iov;
  94. long msg_iovlen;
  95. void *msg_accrights;
  96. long msg_accrightslen;
  97. };
  98. # endif /* _mint_socket_h */