/kernel/include/net/socket.h

https://repo.or.cz/AquilaOS.git · C Header · 85 lines · 62 code · 20 blank · 3 comment · 0 complexity · 43747f1774f841a0561875b591edc5c6 MD5 · raw file

  1. #ifndef _NET_SOCKET_H
  2. #define _NET_SOCKET_H
  3. #include <core/system.h>
  4. #include <fs/vfs.h>
  5. typedef uint32_t socklen_t;
  6. typedef uint32_t sa_family_t;
  7. struct sockaddr {
  8. sa_family_t sa_family;
  9. char sa_data[];
  10. };
  11. struct socket {
  12. int domain;
  13. int type;
  14. int protocol;
  15. /* Socket handler */
  16. struct sock_ops *ops;
  17. /* Private data */
  18. void *p;
  19. ssize_t ref;
  20. };
  21. struct sock_ops {
  22. int (*accept) (struct file *socket, struct file *conn, const struct sockaddr *addr, socklen_t *len);
  23. int (*bind) (struct file *socket, const struct sockaddr *addr, socklen_t len);
  24. int (*connect)(struct file *socket, const struct sockaddr *addr, socklen_t len);
  25. int (*listen) (struct file *socket, int backlog);
  26. ssize_t (*recv)(struct file *socket, void *buf, size_t len, int flags);
  27. ssize_t (*send)(struct file *socket, void *buf, size_t len, int flags);
  28. int (*can_read)(struct file *socket, size_t len);
  29. int (*can_write)(struct file *socket, size_t len);
  30. int (*shutdown) (struct file *socket, int how);
  31. };
  32. #define SOCK_DGRAM 0x0001
  33. #define SOCK_RAW 0x0002
  34. #define SOCK_SEQPACKET 0x0003
  35. #define SOCK_STREAM 0x0004
  36. #define SOMAXCONN 1024
  37. #define AF_INET 0x0001
  38. #define AF_INET6 0x0002
  39. #define AF_UNIX 0x0003
  40. #define AF_UNSPEC 0x0004
  41. #define FILE_SOCKET 0x80000000
  42. #define MSG_CTRUNC 0x0001
  43. #define MSG_DONTROUTE 0x0002
  44. #define MSG_EOR 0x0004
  45. #define MSG_OOB 0x0008
  46. #define MSG_NOSIGNAL 0x0010
  47. #define MSG_PEEK 0x0020
  48. #define MSG_TRUNC 0x0040
  49. #define MSG_WAITALL 0x0080
  50. #define SHUT_RD 0x0001
  51. #define SHUT_WR 0x0002
  52. #define SHUT_RDWR (SHUT_RD|SHUT_WR)
  53. int socket_create(struct file *file, int domain, int type, int protocol);
  54. int socket_bind(struct file *file, const struct sockaddr *addr, uint32_t len);
  55. int socket_accept(struct file *file, struct file *conn, const struct sockaddr *addr, socklen_t *len);
  56. int socket_connect(struct file *file, const struct sockaddr *addr, uint32_t len);
  57. int socket_listen(struct file *file, int backlog);
  58. int socket_send(struct file *file, void *buf, size_t len, int flags);
  59. int socket_recv(struct file *file, void *buf, size_t len, int flags);
  60. int socket_can_read(struct file *file, size_t len);
  61. int socket_can_write(struct file *file, size_t len);
  62. int socket_shutdown(struct file *file, int how);
  63. /* AF_UNIX */
  64. int socket_unix_create(struct file *file, int domain, int type, int protocol);
  65. #endif /* ! _NET_SOCKET_H */