Ruby  2.5.0dev(2017-10-22revision60238)
Data Structures | Functions | Variables
init.c File Reference
#include "rubysocket.h"

Go to the source code of this file.

Data Structures

struct  recvfrom_arg
 
struct  connect_arg
 
struct  accept_arg
 

Functions

void rsock_raise_socket_error (const char *reason, int error)
 
VALUE rsock_init_sock (VALUE sock, int fd)
 
VALUE rsock_sendto_blocking (void *data)
 
VALUE rsock_send_blocking (void *data)
 
VALUE rsock_s_recvfrom (VALUE sock, int argc, VALUE *argv, enum sock_recv_type from)
 
VALUE rsock_s_recvfrom_nonblock (VALUE sock, VALUE len, VALUE flg, VALUE str, VALUE ex, enum sock_recv_type from)
 
int rsock_detect_cloexec (int fd)
 
int rsock_socket (int domain, int type, int proto)
 
int rsock_connect (int fd, const struct sockaddr *sockaddr, int len, int socks)
 
VALUE rsock_s_accept_nonblock (VALUE klass, VALUE ex, rb_io_t *fptr, struct sockaddr *sockaddr, socklen_t *len)
 
VALUE rsock_s_accept (VALUE klass, int fd, struct sockaddr *sockaddr, socklen_t *len)
 
int rsock_getfamily (rb_io_t *fptr)
 
void rsock_init_socket_init (void)
 

Variables

VALUE rb_cBasicSocket
 
VALUE rb_cIPSocket
 
VALUE rb_cTCPSocket
 
VALUE rb_cTCPServer
 
VALUE rb_cUDPSocket
 
VALUE rb_cSocket
 
VALUE rb_cAddrinfo
 
VALUE rb_eSocket
 
int rsock_do_not_reverse_lookup = 1
 

Function Documentation

◆ rsock_connect()

int rsock_connect ( int  fd,
const struct sockaddr *  sockaddr,
int  len,
int  socks 
)

Definition at line 454 of file init.c.

◆ rsock_detect_cloexec()

int rsock_detect_cloexec ( int  fd)

Definition at line 284 of file init.c.

References errno, F_GETFD, fcntl(), FD_CLOEXEC, recvfrom_arg::flags, rb_bug(), and strerror().

◆ rsock_getfamily()

int rsock_getfamily ( rb_io_t fptr)

◆ rsock_init_sock()

VALUE rsock_init_sock ( VALUE  sock,
int  fd 
)

◆ rsock_init_socket_init()

void rsock_init_socket_init ( void  )

◆ rsock_raise_socket_error()

void rsock_raise_socket_error ( const char *  reason,
int  error 
)

◆ rsock_s_accept()

VALUE rsock_s_accept ( VALUE  klass,
int  fd,
struct sockaddr *  sockaddr,
socklen_t len 
)

◆ rsock_s_accept_nonblock()

VALUE rsock_s_accept_nonblock ( VALUE  klass,
VALUE  ex,
rb_io_t fptr,
struct sockaddr *  sockaddr,
socklen_t len 
)

Definition at line 553 of file init.c.

References rb_io_set_nonblock().

◆ rsock_s_recvfrom()

VALUE rsock_s_recvfrom ( VALUE  sock,
int  argc,
VALUE argv,
enum sock_recv_type  from 
)

Definition at line 146 of file init.c.

References recvfrom_arg::flags, len, NUM2INT, Qnil, rb_scan_args(), and recvfrom_arg::str.

◆ rsock_s_recvfrom_nonblock()

VALUE rsock_s_recvfrom_nonblock ( VALUE  sock,
VALUE  len,
VALUE  flg,
VALUE  str,
VALUE  ex,
enum sock_recv_type  from 
)

◆ rsock_send_blocking()

VALUE rsock_send_blocking ( void *  data)

Definition at line 91 of file init.c.

References rsock_send_arg::fd, rsock_send_arg::flags, rsock_send_arg::mesg, RSTRING_LEN, and RSTRING_PTR.

Referenced by rsock_bsock_send().

◆ rsock_sendto_blocking()

VALUE rsock_sendto_blocking ( void *  data)

◆ rsock_socket()

int rsock_socket ( int  domain,
int  type,
int  proto 
)

Definition at line 357 of file init.c.

References recvfrom_arg::fd.

Variable Documentation

◆ rb_cAddrinfo

VALUE rb_cAddrinfo

Definition at line 23 of file init.c.

Referenced by rsock_init_addrinfo().

◆ rb_cBasicSocket

VALUE rb_cBasicSocket

◆ rb_cIPSocket

VALUE rb_cIPSocket

Definition at line 14 of file init.c.

Referenced by rsock_init_ipsocket(), rsock_init_tcpsocket(), and rsock_init_udpsocket().

◆ rb_cSocket

VALUE rb_cSocket

Definition at line 22 of file init.c.

Referenced by Init_socket(), rsock_init_ancdata(), rsock_init_sockifaddr(), and rsock_init_sockopt().

◆ rb_cTCPServer

VALUE rb_cTCPServer

Definition at line 16 of file init.c.

Referenced by rsock_init_tcpserver().

◆ rb_cTCPSocket

VALUE rb_cTCPSocket

Definition at line 15 of file init.c.

Referenced by rsock_init_sockssocket(), rsock_init_tcpserver(), and rsock_init_tcpsocket().

◆ rb_cUDPSocket

VALUE rb_cUDPSocket

Definition at line 17 of file init.c.

Referenced by rsock_init_udpsocket().

◆ rb_eSocket

VALUE rb_eSocket

Definition at line 25 of file init.c.

Referenced by rsock_init_socket_init(), and rsock_raise_socket_error().

◆ rsock_do_not_reverse_lookup

int rsock_do_not_reverse_lookup = 1

Definition at line 31 of file init.c.

Referenced by rsock_init_sock().