English Dictionary
◊ SOCKEYE
sockeye
n 1: fatty red flesh of salmon of Pacific coast and rivers [syn:
{red salmon}, {sockeye salmon}]
2: small red-fleshed salmon of rivers and tributaries of the
north Pacific valued as food; adults die after spawning
[syn: {sockeye salmon}, {red salmon}, {blueback salmon}, {Onchorynchus
nerka}]
English Computing Dictionary
◊ DID YOU MEAN SOCKET?
socket
The {Berkeley Unix} mechansim for creating a
virtual connection between processes. Sockets interface
{Unix}'s {standard I/O} with its {network} communication
facilities. They can be of two types, stream (bi-directional)
or {datagram} (fixed length destination-addressed messages).
The socket library function socket() creates a communications
end-point or socket and returns a {file descriptor} with which
to access that socket. The socket has associated with it a
socket address, consisting of a {port} number and the local
host's network address.
{Unix manual page}: socket(2).
(1995-01-31)