- close
alias close = .posix_close
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- connect
alias connect = .posix_connect
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- getsockopt
alias getsockopt = .posix_getsockopt
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- open
alias open = .posix_open
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- read
alias read = .posix_read
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- setsockopt
alias setsockopt = .posix_setsockopt
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- write
alias write = .posix_write
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- posix_close
int posix_close(int fd)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- posix_connect
int posix_connect(int sockfd, const(sockaddr)* addr, socklen_t addrlen)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- posix_getsockopt
int posix_getsockopt(int sockfd, int level, int optname, void* optval, socklen_t* optlen)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- posix_open
int posix_open(const(char)* path, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- posix_read
libressl_d.compat.sys.types.ssize_t posix_read(int fd, void* buf, size_t count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- posix_setsockopt
int posix_setsockopt(int sockfd, int level, int optname, const(void)* optval, socklen_t optlen)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- posix_write
libressl_d.compat.sys.types.ssize_t posix_write(int fd, const(void)* buf, size_t count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.