Files
llvm-project/libc/include/sys/socket.yaml
Pavel Labath bafbd54a90 [libc] Add "struct linger" (#192606)
Add a simple test to get/set the socket option. I didn't try to test the
actual lingering behavior. That sounds complicated and I'm not sure if
it's even doable on a loopback connection.
2026-04-20 08:36:40 +00:00

143 lines
2.7 KiB
YAML

header: sys/socket.h
standards:
- posix
macros:
- macro_name: AF_UNSPEC
macro_header: sys-socket-macros.h
types:
- type_name: struct_sockaddr
- type_name: socklen_t
- type_name: sa_family_t
- type_name: struct_msghdr
- type_name: struct_iovec
- type_name: struct_linger
- type_name: size_t
- type_name: ssize_t
enums: []
objects: []
functions:
- name: accept
standards:
- POSIX
return_type: int
arguments:
- type: int
- type: struct sockaddr *__restrict
- type: socklen_t *__restrict
- name: bind
standards:
- POSIX
return_type: int
arguments:
- type: int
- type: const struct sockaddr *
- type: socklen_t
- name: connect
standards:
- POSIX
return_type: int
arguments:
- type: int
- type: const struct sockaddr *
- type: socklen_t
- name: getsockopt
standards:
- POSIX
return_type: int
arguments:
- type: int
- type: int
- type: int
- type: void *__restrict
- type: socklen_t *__restrict
- name: listen
standards:
- POSIX
return_type: int
arguments:
- type: int
- type: int
- name: recv
standards:
- POSIX
return_type: ssize_t
arguments:
- type: int
- type: void *
- type: size_t
- type: int
- name: recvfrom
standards:
- POSIX
return_type: ssize_t
arguments:
- type: int
- type: void *
- type: size_t
- type: int
- type: struct sockaddr *__restrict
- type: socklen_t *__restrict
- name: recvmsg
standards:
- POSIX
return_type: ssize_t
arguments:
- type: int
- type: struct msghdr *
- type: int
- name: send
standards:
- POSIX
return_type: ssize_t
arguments:
- type: int
- type: const void*
- type: size_t
- type: int
- name: sendmsg
standards:
- POSIX
return_type: ssize_t
arguments:
- type: int
- type: const struct msghdr *
- type: int
- name: sendto
standards:
- POSIX
return_type: ssize_t
arguments:
- type: int
- type: const void *
- type: size_t
- type: int
- type: const struct sockaddr *
- type: socklen_t
- name: setsockopt
standards:
- POSIX
return_type: int
arguments:
- type: int
- type: int
- type: int
- type: const void *
- type: socklen_t
- name: socket
standards:
- POSIX
return_type: int
arguments:
- type: int
- type: int
- type: int
- name: socketpair
standards:
- posix
return_type: int
arguments:
- type: int
- type: int
- type: int
- type: int*