Internet socket address record.
Source position: socketsh.inc line 70
type sockaddr_in = packed record  | 
||
sin_family: sa_family_t;  | 
  | 
Internet socket family.  | 
sin_port: cushort;  | 
  | 
Internet socket port.  | 
sin_addr: in_addr;  | 
  | 
Internet socket host address.  | 
xpad: array [0..7] of AnsiChar;  | 
  | 
Padding bytes.  | 
end;  | 
sockaddr_in is used to store a INET socket address for the FPBind, FPRecv and FPSend calls.