#include "uv.h"
#include "internal.h"
#include <assert.h>
#include <errno.h>
#include <string.h>
#include <sys/un.h>
#include <unistd.h>
#include <stdlib.h>
Go to the source code of this file.
Functions | |
void | uv__pipe_close (uv_pipe_t *handle) |
static int | uv__pipe_getsockpeername (const uv_pipe_t *handle, uv__peersockfunc func, char *buffer, size_t *size) |
int | uv_pipe_bind (uv_pipe_t *handle, const char *name) |
int | uv_pipe_chmod (uv_pipe_t *handle, int mode) |
void | uv_pipe_connect (uv_connect_t *req, uv_pipe_t *handle, const char *name, uv_connect_cb cb) |
int | uv_pipe_getpeername (const uv_pipe_t *handle, char *buffer, size_t *size) |
int | uv_pipe_getsockname (const uv_pipe_t *handle, char *buffer, size_t *size) |
int | uv_pipe_init (uv_loop_t *loop, uv_pipe_t *handle, int ipc) |
int | uv_pipe_listen (uv_pipe_t *handle, int backlog, uv_connection_cb cb) |
int | uv_pipe_open (uv_pipe_t *handle, uv_file fd) |
int | uv_pipe_pending_count (uv_pipe_t *handle) |
void | uv_pipe_pending_instances (uv_pipe_t *handle, int count) |
uv_handle_type | uv_pipe_pending_type (uv_pipe_t *handle) |
void uv__pipe_close | ( | uv_pipe_t * | handle | ) |
Definition at line 120 of file unix/pipe.c.
|
static |
Definition at line 240 of file unix/pipe.c.
Definition at line 43 of file unix/pipe.c.
Definition at line 326 of file unix/pipe.c.
void uv_pipe_connect | ( | uv_connect_t * | req, |
uv_pipe_t * | handle, | ||
const char * | name, | ||
uv_connect_cb | cb | ||
) |
Definition at line 173 of file unix/pipe.c.
Definition at line 289 of file unix/pipe.c.
Definition at line 284 of file unix/pipe.c.
Definition at line 33 of file unix/pipe.c.
int uv_pipe_listen | ( | uv_pipe_t * | handle, |
int | backlog, | ||
uv_connection_cb | cb | ||
) |
Definition at line 94 of file unix/pipe.c.
Definition at line 137 of file unix/pipe.c.
Definition at line 298 of file unix/pipe.c.
Definition at line 294 of file unix/pipe.c.
uv_handle_type uv_pipe_pending_type | ( | uv_pipe_t * | handle | ) |
Definition at line 315 of file unix/pipe.c.