Go to the source code of this file.
|
| static local_listen_t * | local_socket_data_get_listen (local_socket_data_t *data) |
| |
| static local_conn_t * | local_socket_data_get_conn (local_socket_data_t *data) |
| |
| static uint64_t | local_socket_init (socket_t *sock) |
| |
| static void | local_socket_deinit (socket_t *sock) |
| |
| static uint64_t | local_socket_bind (socket_t *sock, const char *address) |
| |
| static uint64_t | local_socket_listen (socket_t *sock, uint32_t backlog) |
| |
| static uint64_t | local_socket_connect (socket_t *sock, const char *address) |
| |
| static uint64_t | local_socket_accept (socket_t *sock, socket_t *newSock, mode_t mode) |
| |
| static uint64_t | local_socket_send (socket_t *sock, const void *buffer, uint64_t count, uint64_t *offset, mode_t mode) |
| |
| static uint64_t | local_socket_recv (socket_t *sock, void *buffer, uint64_t count, uint64_t *offset, mode_t mode) |
| |
| static wait_queue_t * | local_socket_poll (socket_t *sock, poll_events_t *revents) |
| |
| uint64_t | net_local_init (void) |
| | Initialize the local networking subsystem.
|
| |
| void | net_local_deinit (void) |
| | Deinitialize the local networking subsystem.
|
| |
◆ local_socket_data_get_listen()
◆ local_socket_data_get_conn()
◆ local_socket_init()
◆ local_socket_deinit()
| static void local_socket_deinit |
( |
socket_t * |
sock | ) |
|
|
static |
◆ local_socket_bind()
◆ local_socket_listen()
◆ local_socket_connect()
◆ local_socket_accept()
◆ local_socket_send()
◆ local_socket_recv()
◆ local_socket_poll()
◆ ops
Initial value:= {
}
static uint64_t local_socket_bind(socket_t *sock, const char *address)
static uint64_t local_socket_accept(socket_t *sock, socket_t *newSock, mode_t mode)
static uint64_t local_socket_connect(socket_t *sock, const char *address)
static uint64_t local_socket_send(socket_t *sock, const void *buffer, uint64_t count, uint64_t *offset, mode_t mode)
static void local_socket_deinit(socket_t *sock)
static uint64_t local_socket_init(socket_t *sock)
static wait_queue_t * local_socket_poll(socket_t *sock, poll_events_t *revents)
static uint64_t local_socket_listen(socket_t *sock, uint32_t backlog)
static uint64_t local_socket_recv(socket_t *sock, void *buffer, uint64_t count, uint64_t *offset, mode_t mode)
Definition at line 505 of file local.c.