Lines Matching full:socket
32 int socket;
39 * Create a rbug connection from a socket created with u_socket.
42 * A new allocated connection using socket as communication path
45 rbug_from_socket(int socket)
48 c->socket = socket;
53 * Free a connection, also closes socket.
58 u_socket_close(c->socket);
80 ret = u_socket_peek(c->socket, &header, sizeof(header));
94 ret = u_socket_recv(c->socket, ptr, length - read);
143 * Write data to the socket.
148 int ret = u_socket_send(c->socket, to, size);
155 * Finish writeing data to the socket.