1. |
-
UNIX System Calls and Subroutines in C
- At Cardiff, web text about many unix c features.
URL: http://www.cm.cf.ac.uk/Dave/C/CE.html
|
2. |
-
Sockets
- A socket is a generalized interprocess communication channel. Like a pipe, a socket is represented as a file
descriptor. But, unlike pipes, sockets support communication between unrelated processes, and even between
processes running on different machines that communicate over a network. Sockets are the primary means of
communicating with other machines; telnet, rlogin, ftp, talk, and the other familiar network programs
use sockets.
URL: http://www.fh-wedel.de/~herbert/html/glibc/libc_11.html
|
3. |
-
Introduction to Socket Programming [Bart Trojanowski] [PostScript]
- Information about socket programming.
URL: http://216.239.35.100/search?q=cache:TVfd8xUTE20C:jukie.net/~bart/slides/socket-intro/socket-intro-2.ps+recvfrom+select+socket+sockaddr_in+inet_aton&hl=en
|
4. |
-
CIS 307: Sockets [ingargio@joda.cis.temple.edu ]
- A socket is an endpoint used by a process for bidirectional
communication with a socket associated with another process. Sockets, introduced in Berkeley Unix, are a
basic mechanism for IPC on a computer system, or on different computer systems connected by local or wide
area networks.
URL: http://joda.cis.temple.edu/~ingargio/cis307/readings/unix4.html
|
5. |
-
Beej's Guide to Network Programming
- This document has been written as a tutorial, not a reference. It is probably at its best when read by individuals who
are just starting out with socket programming and are looking for a foothold. It is certainly not the
complete
guide to
sockets programming.
URL: http://www.ecst.csuchico.edu/~beej/guide/net/bgnet.pdf
|