iPXE
Macros | Variables
Communication semantics

Macros

#define TCP_SOCK_STREAM   0x1
 
#define SOCK_STREAM   tcp_sock_stream
 
#define UDP_SOCK_DGRAM   0x2
 
#define SOCK_DGRAM   udp_sock_dgram
 
#define PING_SOCK_ECHO   0x3
 
#define SOCK_ECHO   ping_sock_echo
 

Variables

int tcp_sock_stream
 Connection-based, reliable streams. More...
 
int udp_sock_dgram
 Connectionless, unreliable streams. More...
 
int ping_sock_echo
 Echo testing streams. More...
 

Detailed Description

Macro Definition Documentation

◆ TCP_SOCK_STREAM

#define TCP_SOCK_STREAM   0x1

Definition at line 23 of file socket.h.

◆ SOCK_STREAM

#define SOCK_STREAM   tcp_sock_stream

Definition at line 24 of file socket.h.

◆ UDP_SOCK_DGRAM

#define UDP_SOCK_DGRAM   0x2

Definition at line 28 of file socket.h.

◆ SOCK_DGRAM

#define SOCK_DGRAM   udp_sock_dgram

Definition at line 29 of file socket.h.

◆ PING_SOCK_ECHO

#define PING_SOCK_ECHO   0x3

Definition at line 33 of file socket.h.

◆ SOCK_ECHO

#define SOCK_ECHO   ping_sock_echo

Definition at line 34 of file socket.h.

Variable Documentation

◆ tcp_sock_stream

int tcp_sock_stream

Connection-based, reliable streams.

Connection-based, reliable streams.

Definition at line 1753 of file tcp.c.

◆ udp_sock_dgram

int udp_sock_dgram

Connectionless, unreliable streams.

Connectionless, unreliable streams.

Definition at line 406 of file udp.c.

◆ ping_sock_echo

int ping_sock_echo

Echo testing streams.

Echo testing streams.

Definition at line 269 of file ping.c.