Lecture 7: Introduction to Sockets
|
|
|
- Roxanne Anderson
- 9 years ago
- Views:
Transcription
1 Lecture 7: Introduction to Sockets References for Lecture 7: 1) Unix Network Programming, W.R. Stevens, 1990,Prentice-Hall, Chapter 6. 2) Unix Network Programming, W.R. Stevens, 1998,Prentice-Hall, Volume 1, Chapter 3-4. API (Application Programming Interface) the interface available to the programmer for using the communication protocols. The API is depend to the OS + the programming language. In this course, we discuss the socket API. With sockets, the network connection can be used as a file. Network I/O is, however, more complicated than file I/O because: Asymmetric. The connection requires the program to know which process it is, the client or the server. A network connection that is connection-oriented is somewhat like opening a file. A connectionless protocol doesn t have anything like an open. A network application needs additional information to maintain protections, for example, of the other process. There are more parameters required to specify a network connection than the file I/O. The parameter have different formats for different protocols. The network interface must support different protocols. These protocols may use different-size variable for addresses and other fields. Socket Address Because different protocols can use sockets, a generic socket address structure is defined. The socket address structure of the protocol is recast as the generic one when calling socket functions. /* Generic Socket Address Structure, length=16*/ <sys/socket.h> struct socketaddr { unit8_t sa_len; sa_family_t sa_family; /* address family: AF_XXX value */ char sa_data[14]; /*up to 14 types of protocol-specific address */ ; /* Ipv4 Socket Address Structure, length=16*/ <netinet/in.h> struct in_addr { in_addr_t s_addr; /* 32-bit IPv4 address, network byte ordered */ ; 1
2 struct sockaddr_in{ unit8_t sin_len; /* length of structure (16 byte) */ sa_family_t sin_family; /*AF_INET*/ in_port_t sin_port; /* 16-bit TCP or UDP port number,, network byte ordered */ struct in_addr sin_addr; /*32-bit Ipv4 address, network byte ordered */ char sin_zero[8]; /* unused initialize to all zeroes */ ; /* Ipv6 Socket Address Structure, length=24*/ <netinet/in.h> struct in6_addr { unit8_t s6_addr[16]; /* 128-bit Ipv6 address, network byte ordered */ ; #define SIN6_LEN /* required for compile-time tests */ struct sockaddr_in6{ unit8_t sin6_len; /* length of this structure (24byte) */ sa_family_t sin6_family; /*AF_INET6*/ in_port_t sin6_port; /* 16-bit TCP or UDP port number,, network byte ordered */ unit32_t sin6_flowinfor; /* priority + flow label, network byte ordered */ struct in6_addr sin6_addr; /* Ipv6 address, network byte ordered */ ; /*Xerox NS Socket Address Structure*/ struct sockaddr_ns{ u_short sns_family /* AF_NS */ struct ns_addr sns_addr /* the 12_byte XNS address */ char sns_xero[2] /*unused*/ ; /* Unix Domain Socket Address Structure, variable length, you need to pass the actual length as an argument */ struct sockaddr_un { short sun_family; /*AF_UNIX*/ char sun_path[108]; /* pathname */ ; Different protocols have different Socket Address Structure with different length. Unix has one set of network system calls to support such protocols. So, the socket address structure of the specific protocol is recast as the generic one when using Unix network system calls. That is also why a generic socket address structure is defined. ANSI C has a simple solution, by using void *, but the socket functions (announced in 1982) predate ANSI C. Byte Ordering Routines The network protocols use big-endian format. The host processor many not, so there are functions to convert between the two: 2
3 <netinet/in.h> uint16_t htons(uint16_t host16val); -- convert 16-bit value from host to network order, used for the port number. uint32_t htonl(uint32_t host32val); -- convert 32-bit value from host to network order, used for the Ipv4 address. uint16_t ntohs(uint16_t network16val); -- convert 16-bit value from network to host order. uint32_t ntohl(uint32_t network32val); -- convert 32-bit value from network to host order. Note1: These functions works equally well for signed integer. 2: These functions don t do anything on systems where the host byte order is big-endian, however, they should be used for portability. Byte Manipulation Routines The following functions can be used to initialize or compare memory locations: System V: void *memset(void *dest, int c, size_t nbytes); -- writes value c (converted into an unsigned char) into nbytes bytes of dest. Returns dest. void *memcpy(void *dest, const void *src, size_t nbytes); -- copies nbytes of src to dest. Returns dest. int memcmp(const void *ptrl, const void *ptr2, size_t nbutes); -- compare nbytes of the two strings, Returns 0 if they match, >0 if ptr1 >ptr2, < 0 if ptr1 < ptr2. BSD 4.3: bzero(char *dest, int nbytes); -- writes NULL into nbytes bytes of dest. bcopy(char *src, char *dest, int nbytes); -- similar with memcpy. int bcmp(char *ptrl, char *ptr2, int nbytes); -- similar with memcmp. void can only be used for pointer! Notice 1) the difference between the Byte Manipulation Functions and the string functions with name beginning with str, such as strcpy() and strcmp. 2) the meaning of void *dest 3) the meaning of const void *src 4) return value of memset() or memcpy()is the same as the first argument. Address Conversion Routines An internet address is written as: , saved as a character string. The functions require their number as a 32-bit binary value. To convert between the two, some functions are available: <arpa/inet.h> int inet_aton(const char *strptr, struct in_addr * addrptr); -- returns 1, 0 on error. Converts from a dotted-decimal string to a network address. unsigned long inet_addr(char *strptr); -- Converts from a dotted-decimal string to 32-bit interger as return value. char *inet_ntoa(struct in_addr addrptr); -- Returns a pointer to a dotted-decimal string, given a valid network address. Notice: inet_addr( ) and inet_aton are similar. Use inet_aton in your code. This can also be done with two functions that support both IPv4 and IPv6 protocol: 3
4 int inet_pton(int family, const char *strptr, void *addrptr); -- returns 1 if OK, 0 if invalid input format, -1 on error. Const char *inet_ntop(int family, const void *addrptr, char *strptr, size_t len); -- returns pointer to result if OK, NULL on error. Procedure of Socket Programming In order to communicate between two processes, the two processes must provide the formation used by ICP/IP (or UDP/IP) to exchange data. This information is the 5-tupe: {protocol, local-addr, local-process, foreign-addr, foreign-process. Several network systems calls are used to specify this information and use the socket. Server: socket( ) Client: socket( ) bind( ) listen( ) connect( ) accept( ) block until connection from client write( ) read( ) write( ) read( ) Connection-Orieted Protocol (TCP) Questions: 1) Why is there no bind( ) for client? 2) Why does server need listen( )? 3) Why can UDP not use read( ) or write()? 4
5 Server: socket( ) Client: socket( ) bind( ) bind( ) recvfrom( ) sendto( ) block until date received from client sendto( ) recvfrom( ) Connectionless Protocol (UDP) Notice the difference between TCP and UDP! The fields in the 5-tuple are set by: Protocol Local-addr Local-port Foreign-addr Foreign-port Connection-oriented server socket() bind() accept() Connection-oriented client socket() connect() Connectionless server socket() bind() recvfrom() Connectionless client socket() bind() sendto() Socket Function Calls: #include <sys/socket.h> int socket(int family, int type, int protocol); -- returns a socket descriptor, -1 on error. famly AF_INET = Ipv4 protocol AF_INET6 = Ipv6 protocol AF_LOCAL = Unix domain protocol AF_NS = Xerox NS protocol AF_ROUTE = Access routing table information in kernel AF_KEY = Access cryptographic/security key table in kernel type SOCK_STREAM = stream socket (TCP) SOCK_DGRAM = datagram socket (UDP) SOCK_RAM = raw socket (IP, also used with AF_ROUTE + AF_KEY) protocol usually set to 0 and protocol is chosen based on family and type fields. Returns socket descriptor, equivalent to 5-tuple. For your convenience, always associate a 5-tuple association with a socket descriptor. int connect(int sockfd, const struct sockaddr *servaddr, socklen-t addrlen); sockfd socket descriptor, value returned by socket( ). serveraddr server s socket, contains the IP address and port number of the server. 5
6 addrlen length of the structure sockaddr, to support different protocols. Notes: 1) connect( ) sets the local and foreign addresses and port numbers. 2) It initializes an active request for connection between the client and the server. 3) It blocks until the connection is established. 4) Mainly used connection-oriented protocols, e.g., TCP. 5) Connect() can also be used for connectionless protocols. In this case, 5.1) it doesn t establish a connection. 5.2) returns immediately. 5.3) when sending data, the destination socket address are not specified explicitly. Use send() or write() instead of sendto(). 5.4) datagrams from only the designated address can be received. Use read() or recv() intead of recvfrom(). 5.5)connected UDP socket is much faster than unconnected UDP socket. 6) The socket can late be connected to another destination (or become unconnected) by calling connect() again. Use family=af_unspec to unconnect the socket. int bind(int sockfd, const struct sockaddr *myaddr, socklen-t addrlen); -- returns 0 if OK, -1 on error. sockfd value returned by socket( ). myaddr protocol-specific address. Values depend on usage. addrlen size of the address structure. In order to support different protocols. Notes: 1) bind assigns the local IP address and port number to the socket. 2) Servers call bind() to their well-known port to the socket. If a server omits the call to bind(), the kernel selects an ephemeral port. 3) Normally a TCP client doesn t bind an IP address and port to its socket. The kernel chooses the IP address and port number when connect is called. A UDP client uses bind( ) so that incoming packets can be delivered to it by the kernel. 4) Using a wildcard, INADDR_ANY, for the IP address allows the kernel to select the IP address. 5) Using 0 for the port allows the kernel to choose the port; you can call getsockname( ) to know a kernel assigned port number see example 1. 6) Reserved ports: See RFC 1700 for the full list of well-known ports or visit our FAQs. See /etc/services or \WINNT\system32\drivers\etc\services for local definition of reserved ports. Internet Port Number Reserved ports Standard Internet Applications: FTP, TELNET, TFTP, SMTP Reserved for future Ports assigned by int rresvport(int *aport) Let system assign port number 0 Ports automatically assigned by system User-developed Server >
7 int listen(int sockfd, int backlog); -- returns 0 if OK; -1 on error. sockfd value returned by socket(). backlog number of connections the kernel should queue for the socket. Queued while waiting for an accept(). Notes: 1) listen( ) converts the socket into a passive socket, which allows a server to accept incoming connection requests when the server is processing the present request. 2) It has been tested on my computer that listen( ) must be used for connection-oriented server. See example 1. int accept(int sockfd, stuct sockaddr *cliaddr, int * addrlen); -- returns a new sockfd, -1 on error. sockfd value returned by socket(). cliaddr returns the socket address of the client. addrlen a value-result argument. The calling process sets a value. The function uses this value and then updates it. In this case the server passes the size of the sockaddr structure and the number of bytes placed in cliaddr is returned. Notes: 1) accept() blocks until a connection request is received from a client. sockfd is unchanged but a new socketfd is returned that specifies the connection to this client. Why? 2) 3 return values: new socket fd, the client s IP address and port number are placed in cliaddr, length of the client s socket address stored in addrlen. 3) In example 1, accept(sk, 0, 0) means that I don t want to know the client s socket address. int close(int sockfd); -- returns 0 if OK; -1 on error. Closes the socket. Data already written to the socket that hasn t been sent yet will be sent and then the connection will be terminated. The call to close() returns immediately, even if unacknowledged data remains. Miscellaneous Socket Functions: Int shutdown(int sockfd, int howto) returns 0 if OK, -1 on error. Unlike close, shutdown allows the system to close the socket without waiting for the other process to also close the socket. Operations are: howto = SHUT_RD(0) receive on more data on the socket. Buffered data is discarded. SHUT_WR(1) send no more data on the socket. SHUT_RDWR(2) closes both halves, cannot send or receive data Besides using read and wirte on connected sockets, special functions are available for sending and receiving data over a socket. For connection-oriented: ssize_t recv(int sockfd, void *buff, size_t nbytes, int flags); ssize_t send(int sockfd, const void *buff, size_t nbytes, int flags); For connectionless: ssize_t recvfrom(int sockfd, void *buff, size_t nbytes, int flags struct sockaddr *from, socklen_t *addrlen); ssize_t sendto(int sockfd, void *buff, size_t nbytes, int flags struct sockaddr *to, socklen_t addrlen); -- returns number of bytes read or written, -1 on error. 7
8 -- possible flags are: MSG_DONTROUT bypass the routing table lookup. Can be used for LANs. MSG_DONTWAIT converts the functions into a nonblocking call. MSG_OOB send or receive out-of-band data as opposed to normal data.tcp allows only one byte of OOB data. MSG_PEEK receives data, but does not remove it MSG_WAITALL doesn t return from a recv() or recvfrom() until the specified number of bytes have been read or an error occurs. int getpeername(int sockfd, struct sockaddr *peer, socklen_t *addrlen); returns 0 if OK, -1 on error. peer obtains the opposite process socket address: IP address and port number. int getsockname(int sockfd, struct sockaddr *localaddr, socklen_t *addrlen) returns 0 if OK, -1 on error. localaddr obtains IP address and port number of the local process. If bind() uses port number 0, getsockname() will get a new assigned port number see Note 4 of bind(). #include <unistd.h> int gethostname(char *name, size_t namelen); returns 0 if OK, -1 on error. name -- places the name of a host in name, For example, gigastar. Given a machine name or host name, we can obtain the IP address and vice versa. #include <netdb.h> struct hostent *gethostbyname(const char *hostname); returns NULL on error. gethostbyname() returns a hostent structure containing the hostname s IP addresses and nicknames from local hosts file /etc/hosts or /etc/inet/hosts. struct hostent *gethostbyaddr(const char *addr, size_t leng, int family); returns NULL on error. -- addr is pointer to a struct in_addr or struct in6_addr. struct hostent{ char *h_name; /* official name of the host, such as ece, gigastar.eng.wayne.edu*/ char **h-aliases; /* an array of aliases (names) such as ece.eng.wayne.edu*/ int h-addrtype; /* host address type: AF_INET or AF_INET6 */ int h_length; /* length of the address*/ char **h_addr_list; /* pointer to a list of IP addresses*/ #define h_addr h_addr_list[0] /* first address in the list, for backward compatibility */ The array of pointers h_addr_list[0], h_addr_list[1], and so on, are not pointers to characters but are pointers to structures of type in_addr which is defined in <netinet/in.h>. %hostname -- get the host name of your computer %ifconfig a4 -- get the IP address of your compter %ping a gigastar -- check if a remote host gigastar is reachable. a :get the IP address of the host. See local hosts file /etc/hosts or /etc/inet/hosts or \WINNT\system32\drivers\etc\hosts for local DNS. Do you know how to speed up your surfing speed? 8
9 Two types of server Concurrent server forks a new process, so multiple clients can be handled at the same time. Iterative server the server processes one request before accepting the next. Concurrent Server listenfd = socket( ); bind(listenfd, ); listen(listenfd, ) for ( ; ; ) { connfd = accept(listenfd, ); If (( pid = fork()) == 0) { /* child*/ close(listenfd); /* process the request */ close(connfd); exit(0); close(connfd); /* parent*/ Iterative Server listenfd = socket( ); bind(listenfd, ); listen(listenfd, ) for ( ; ; ) { connfd = accept(listenfd, ); /* process the request */ close(connfd); Client sockfd = socket( ); connect(sockfd, ) /* process the request */ close(sockfd); 9
10 Summary: 1) Difference between TCP and UDP. 2) Difference between stream and datagram. 3) Difference between concurrent server and iterative server. 4) Socket fd = 5-tuple. 5) Socket address = IP address + port number. 6) Difference between port number and process number(pid). 7) How provide protocols: socket(). 8) How many typical protocols: socket(family, type, protocol). 9) How to provide local socket address: bind() or connect(). 10) How to provide opposite/peer socket address: sendto() or connect(). 11) How to get opposite socket address: accept, recvfrom(). 12) How to check local or opposite socket address: getsockname(), getpeername(). 13) How to know a host name and its IP address: gethostname(), gethostbyname(), gethostbyaddr(). 10
11 Example 1: A concurrent server echoes what client users type on keyboard, using connection-oriented TCP stream server.c #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> /* This program creates a well-known Internet domain socket. Each time it accepts a connection, it forks a child to print out messages from the client. It then goes on accepting new connections itself. */ main() { struct sockaddr_in local; int sk, len=sizeof(local), rsk; /* Create an Internet domain stream socket */ sk=socket(af_inet, SOCK_STREAM, 0); /* Construct and bind the name using default values */ local.sin_family=af_inet; local.sin_addr.s_addr=inaddr_any; local.sin_port=0; /* Let the kernel to assign a port; see Note 6 for bind( ) */ bind(sk, &local, sizeof(local)); /* Find out and publish the assigned name */ getsockname(sk, &local, &len); printf("socket has port %d\n", local.sin_port); /* Start accepting connections */ listen(sk, 5) /* Declare the willingness to accept connection. Tested that it is necessary for connection-oriented server */ while (1) { rsk=accept(sk, 0, 0); /* Accept new request for connection */ if (fork()==0){ /* Create one child to serve each client */ dup2(rsk, 0); /* Connect the new connection to "stdin" */ execl("recho", "recho", 0); else close(rsk); Can you find some errors in server.c? Hint: child process without exit(0) will fork grand child process. 11
12 recho.c /* Process "recho". This program implements the service provided by the server. It is a child of the server and receives messages from the peer through "stdin" */ main() { char buf[bufsiz]; while (read(0, buf, BUFSIZ)>0) printf("%s", buf); printf("***** ending connection *****\n"); client.c #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <netdb.h> /* This program creates a socket and initiates a connection with the server socket given in the command line. Messages are read from the standard input until EOF (ctrl-d) is encountered. */ main(argc, argv) int argc; char *argv[]; { char buf[bufsiz], *gets(); struct sockaddr_in remote; int sk; struct hostent *hp, *gethostbyname(); sk=socket(af_inet, SOCK_STREAM, 0); remote.sin_family=af_inet; hp=gethostbyname(argv[1]); /* Get host number from its symbolic name */ bcopy(hp->h_addr, (char *)&remote.sin_addr, hp->h_length); remote.sin_port=atoi(argv[2]); connect(sk, &remote, sizeof(remote)); /* Connect to the remote server */ /* Read input from "stdin" and send to the server */ while (read(0, buf, BUFSIZ)>0) write(sk, buf, strlen(buf)); close(sk); Question: Why does the length field, sin_len, never need to be filled? 12
13 Example 2: For connectionless UDP datagrams sender.c #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <netdb.h> #define MSG "ECE 5650 is a great course!!!" main(argc, argv) int argc; char *argv[]; { int sk; char buf[bufsiz]; struct sockaddr_in remote; struct hostent *hp, *gethostbyname(); sk=socket(af_inet, SOCK_DGRAM, 0); remote.sin_family=af_inet; hp = gethostbyname(argv[1]); bcopy(hp->h_addr, &remote.sin_addr.s_addr, hp->h_length); remote.sin_port=atoi(argv[2]); sendto(sk, MSG, strlen(msg), 0, &remote, sizeof(remote)); read(sk, buf, BUFSIZ); printf("%s\n", buf); close(sk); replier.c #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #define MSG "Are you sure? I doubt!!!" main() { struct sockaddr_in local, remote; int sk, rlen=sizeof(remote), len=sizeof(local); char buf[bufsiz]; sk=socket(af_inet, SOCK_DGRAM, 0); local.sin_family=af_inet; local.sin_addr.s_addr=htonl(inaddr_any); local.sin_port=htons(0); bind(sk, &local, sizeof(local)); getsockname(sk, &local, &len); printf("socket has port %d\n", local.sin_port); recvfrom(sk, buf, BUFSIZ, 0, &remote, &rlen); printf("%s\n", buf); sendto(sk, MSG, strlen(msg), 0, &remote, sizeof(remote)); close(sk); 13
14 Example 3: Unix Domain Streams (without name) unix-stream.c #include <sys/types.h> #include <sys/socket.h> /* This program accepts several numbers from the command line and forks a child to compute the square and cube of those numbers. Results are returned back to the parent and printed out. */ main(argc, argv) int argc; char *argv[]; { int i, cc, pid, sk[2]; int magic; struct {float d, h; num; /* Create a socketpair */ socketpair(af_unix, SOCK_STREAM, 0, sk); if (fork()==0) { /* This is the child process */ close(sk[0]); pid=getpid(); /* Read the number and return the results until the parent ended */ while (read(sk[1], &magic, sizeof(magic))>0) { printf("child[%d]: the magic number is %d\n", pid, magic); num.d=magic * magic; num.h=magic * num.d; write(sk[1], &num, sizeof(num)); close(sk[1]); exit(1); /* This is the parent process */ close(sk[1]); for (i=1; i<argc; i++) { /* Write the numbers to children */ magic=atoi(argv[i]); write(sk[0], &magic, sizeof(magic)); for (i=1; i<argc; i++) { /* Read the results from children */ if (read(sk[0], &num, sizeof(num))<0) break; printf("parent: square=%f, cub=%f\n", num.d, num.h); close(sk[0]); Note: Unix domain unnamed stream is similar to PIPE, but is bi-directional. Remember all sockets are full-duplex. 14
15 Example 4: Unix Domain Datagram (with name) server.c #include <sys/types.h> #include <sys/socket.h> #include <sys/un.h> /* This program creates a UNIX domain datagram socket, binds a name to it, then reads from the socket. */ #define NAME "name-socket-number" /* define the name of the socket */ main() { struct sockaddr_un local; int sk; char buf[bufsiz]; sk=socket(af_unix, SOCK_DGRAM, 0); /* Create an UNIX domain datagram socket from which to read */ local.sun_family=af_unix; /* Define the socket domain */ strcpy(local.sun_path, NAME); /* Define the socket name */ bind(sk, &local, strlen(name)+2); /* Bind the name to the socket, the actual length of socket address is passed*/ read(sk, buf, BUFSIZ); /* Read from the socket */ printf("%s\n", buf); /* Print the message */ unlink(name); /* Delete the i-node bound to the socket */ close(sk); client.c #include <sys/types.h> #include <sys/socket.h> #include <sys/un.h> /* This program sends a message in datagram to the receiver. */ #define MSG "ECE 5650 is a great course!!!" #define NAME "name-socket-number" main() { int sk; struct sockaddr_un remote; char buf[bufsiz]; sk=socket(af_unix, SOCK_DGRAM, 0); /* Create an UNIX domain datagram socket on which to send */ remote.sun_family=af_unix; /* Construct the name of socket to send to */ strcpy(remote.sun_path, NAME); sendto(sk, MSG, strlen(msg), 0, &remote, strlen(name)+2); /* send message */ close(sk); Note: Datagram client doesn t need to use bind( ). 15
16 Example 5 Client-Server Example: /* Example of server using TCP protocol. */ #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> inet.h #define SERV_UDP_PORT 6000 #define SERV_TCP_PORT 6000 #define SERV_HOST_ADDR " " /* host addr for server */ char *pname; main(argc, argv) int argc; char *argv[]; { int sockfd, newsockfd, clilen, childpid; struct sockaddr_in cli_addr, serv_addr; pname = argv[0]; /* Open a TCP socket (an Internet stream socket). */ if ( (sockfd = socket(af_inet, SOCK_STREAM, 0)) < 0) err_dump("server: can't open stream socket"); /* * Bind our local address so that the client can send to us. */ bzero((char *) &serv_addr, sizeof(serv_addr)); serv_addr.sin_family = AF_INET; serv_addr.sin_addr.s_addr = htonl(inaddr_any); serv_addr.sin_port = htons(serv_tcp_port); if (bind(sockfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0) err_dump("server: can't bind local address"); listen(sockfd, 5); for ( ; ; ) {/* Wait for a connection from a client process. This is an example of a concurrent server. */ clilen = sizeof(cli_addr); newsockfd = accept(sockfd, (struct sockaddr *) &cli_addr, &clilen); if (newsockfd < 0) err_dump("server: accept error"); if ( (childpid = fork()) < 0)err_dump("server: fork error"); else if (childpid == 0) { /* child process */ close(sockfd); /* close original socket */ str_echo(newsockfd); /* process the request */ exit(0); close(newsockfd); /* parent process */ 16
17 / * Example of client using TCP protocol. */ #include "inet.h" main(argc, argv) int argc; char *argv[]; { int sockfd; struct sockaddr_in pname = argv[0]; serv_addr; /* Fill in the structure "serv_addr" with the address of the server that we want to connect with. */ bzero((char *) &serv_addr, sizeof(serv_addr)); serv_addr.sin_family = AF_INET; serv_addr.sin_addr.s_addr = inet_addr(serv_host_addr); serv_addr.sin_port = htons(serv_tcp_port); /* Open a TCP socket (an Internet stream socket). */ if ( (sockfd = socket(af_inet, SOCK_STREAM, 0)) < 0) err_sys("client: can't open stream socket"); /* * Connect to the server. */ if (connect(sockfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0) err_sys("client: can't connect to server"); str_cli(stdin, sockfd); /* do it all */ close(sockfd); exit(0); 17
18 /* * Read a stream socket one line at a time, and write each line back to the sender. Return when the connection is terminated. */ #define MAXLINE 512 str_echo(sockfd) int sockfd; { int n; char line[maxline]; for ( ; ; ) { n = readline(sockfd, line, MAXLINE); if (n == 0) return; /* connection terminated */ else if (n < 0) err_dump("str_echo: readline error"); if (writen(sockfd, line, n)!= n) err_dump("str_echo: writen error"); /* * Read the contents of the FILE *fp, write each line to the stream socket (to the server process), then read a line back from the socket and write it to the standard output. Return to caller when an EOF is encountered on the input file. */ #define MAXLINE 512 str_cli(fp, sockfd) register FILE *fp; register int sockfd; { int n; char sendline[maxline], recvline[maxline + 1]; while (fgets(sendline, MAXLINE, fp)!= NULL) { n = strlen(sendline); if (writen(sockfd, sendline, n)!= n) err_sys("str_cli: writen error on socket"); /* Now read a line from the socket and write it to our standard output.*/ n = readline(sockfd, recvline, MAXLINE); if (n < 0) err_dump("str_cli: readline error"); recvline[n] = 0; /* null terminate */ fputs(recvline, stdout); if (ferror(fp)) err_sys("str_cli: error reading file"); 18
Socket Programming. Kameswari Chebrolu Dept. of Electrical Engineering, IIT Kanpur
Socket Programming Kameswari Chebrolu Dept. of Electrical Engineering, IIT Kanpur Background Demultiplexing Convert host-to-host packet delivery service into a process-to-process communication channel
Network Programming with Sockets. Process Management in UNIX
Network Programming with Sockets This section is a brief introduction to the basics of networking programming using the BSD Socket interface on the Unix Operating System. Processes in Unix Sockets Stream
Unix Network Programming
Introduction to Computer Networks Polly Huang EE NTU http://cc.ee.ntu.edu.tw/~phuang [email protected] Unix Network Programming The socket struct and data handling System calls Based on Beej's Guide
Porting applications & DNS issues. socket interface extensions for IPv6. Eva M. Castro. [email protected]. dit. Porting applications & DNS issues UPM
socket interface extensions for IPv6 Eva M. Castro [email protected] Contents * Introduction * Porting IPv4 applications to IPv6, using socket interface extensions to IPv6. Data structures Conversion functions
Introduction to Socket programming using C
Introduction to Socket programming using C Goal: learn how to build client/server application that communicate using sockets Vinay Narasimhamurthy [email protected] CLIENT SERVER MODEL Sockets are
Tutorial on Socket Programming
Tutorial on Socket Programming Computer Networks - CSC 458 Department of Computer Science Seyed Hossein Mortazavi (Slides are mainly from Monia Ghobadi, and Amin Tootoonchian, ) 1 Outline Client- server
Introduction to Socket Programming Part I : TCP Clients, Servers; Host information
Introduction to Socket Programming Part I : TCP Clients, Servers; Host information Keywords: sockets, client-server, network programming-socket functions, OSI layering, byte-ordering Outline: 1.) Introduction
IT304 Experiment 2 To understand the concept of IPC, Pipes, Signals, Multi-Threading and Multiprocessing in the context of networking.
Aim: IT304 Experiment 2 To understand the concept of IPC, Pipes, Signals, Multi-Threading and Multiprocessing in the context of networking. Other Objective of this lab session is to learn how to do socket
Socket Programming. Request. Reply. Figure 1. Client-Server paradigm
Socket Programming 1. Introduction In the classic client-server model, the client sends out requests to the server, and the server does some processing with the request(s) received, and returns a reply
Lab 4: Socket Programming: netcat part
Lab 4: Socket Programming: netcat part Overview The goal of this lab is to familiarize yourself with application level programming with sockets, specifically stream or TCP sockets, by implementing a client/server
Network Programming with Sockets. Anatomy of an Internet Connection
Network Programming with Sockets Anatomy of an Internet Connection Client socket address 128.2.194.242:51213 socket address 208.216.181.15:80 Client Connection socket pair (128.2.194.242:51213, 208.216.181.15:80)
VMCI Sockets Programming Guide VMware ESX/ESXi 4.x VMware Workstation 7.x VMware Server 2.0
VMware ESX/ESXi 4.x VMware Workstation 7.x VMware Server 2.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.
Socket Programming in C/C++
September 24, 2004 Contact Info Mani Radhakrishnan Office 4224 SEL email mradhakr @ cs. uic. edu Office Hours Tuesday 1-4 PM Introduction Sockets are a protocol independent method of creating a connection
NS3 Lab 1 TCP/IP Network Programming in C
NS3 Lab 1 TCP/IP Network Programming in C Dr Colin Perkins School of Computing Science University of Glasgow http://csperkins.org/teaching/ns3/ 13/14 January 2015 Introduction The laboratory exercises
ELEN 602: Computer Communications and Networking. Socket Programming Basics
1 ELEN 602: Computer Communications and Networking Socket Programming Basics A. Introduction In the classic client-server model, the client sends out requests to the server, and the server does some processing
Socket Programming. Srinidhi Varadarajan
Socket Programming Srinidhi Varadarajan Client-server paradigm Client: initiates contact with server ( speaks first ) typically requests service from server, for Web, client is implemented in browser;
INTRODUCTION UNIX NETWORK PROGRAMMING Vol 1, Third Edition by Richard Stevens
INTRODUCTION UNIX NETWORK PROGRAMMING Vol 1, Third Edition by Richard Stevens Read: Chapters 1,2, 3, 4 Communications Client Example: Ex: TCP/IP Server Telnet client on local machine to Telnet server on
Programmation Systèmes Cours 9 UNIX Domain Sockets
Programmation Systèmes Cours 9 UNIX Domain Sockets Stefano Zacchiroli [email protected] Laboratoire PPS, Université Paris Diderot 2013 2014 URL http://upsilon.cc/zack/teaching/1314/progsyst/
ICT SEcurity BASICS. Course: Software Defined Radio. Angelo Liguori. SP4TE lab. [email protected]
Course: Software Defined Radio ICT SEcurity BASICS Angelo Liguori [email protected] SP4TE lab 1 Simple Timing Covert Channel Unintended information about data gets leaked through observing the
TCP/IP - Socket Programming
TCP/IP - Socket Programming [email protected] Jim Binkley 1 sockets - overview sockets simple client - server model look at tcpclient/tcpserver.c look at udpclient/udpserver.c tcp/udp contrasts normal master/slave
Implementing Network Software
Implementing Network Software Outline Sockets Example Process Models Message Buffers Spring 2007 CSE 30264 1 Sockets Application Programming Interface (API) Socket interface socket : point where an application
BSD Sockets Interface Programmer s Guide
BSD Sockets Interface Programmer s Guide Edition 6 B2355-90136 HP 9000 Networking E0497 Printed in: United States Copyright 1997 Hewlett-Packard Company. Legal Notices The information in this document
UNIX. Sockets. mgr inż. Marcin Borkowski
UNIX Sockets Introduction to Sockets Interprocess Communication channel: descriptor based two way communication can connect processes on different machines Three most typical socket types (colloquial names):
Windows Socket Programming & IPv6 Translation Middleware
Windows Socket Programming IPv6 Translation Middleware Dr. Whai-En Chen VoIP and IPv6 Laboratory Research Assistant Professor Dept. of Computer Science and Information Engineering National Chiao Tung University
Concurrent Server Design Alternatives
CSCE 515: Computer Network Programming ------ Advanced Socket Programming Wenyuan Xu Concurrent Server Design Alternatives Department of Computer Science and Engineering University of South Carolina Ref:
Networks. Inter-process Communication. Pipes. Inter-process Communication
Networks Mechanism by which two processes exchange information and coordinate activities Inter-process Communication process CS 217 process Network 1 2 Inter-process Communication Sockets o Processes can
UNIX Sockets. COS 461 Precept 1
UNIX Sockets COS 461 Precept 1 Clients and Servers Client program Running on end host Requests service E.g., Web browser Server program Running on end host Provides service E.g., Web server GET /index.html
Overview. Socket Programming. Using Ports to Identify Services. UNIX Socket API. Knowing What Port Number To Use. Socket: End Point of Communication
Overview Socket Programming EE 122: Intro to Communication Networks Vern Paxson TAs: Lisa Fowler, Daniel Killebrew, Jorge Ortiz Socket Programming: how applications use the network Sockets are a C-language
The POSIX Socket API
The POSIX Giovanni Agosta Piattaforme Software per la Rete Modulo 2 G. Agosta The POSIX Outline Sockets & TCP Connections 1 Sockets & TCP Connections 2 3 4 G. Agosta The POSIX TCP Connections Preliminaries
CSE 333 SECTION 6. Networking and sockets
CSE 333 SECTION 6 Networking and sockets Goals for Today Overview of IP addresses Look at the IP address structures in C/C++ Overview of DNS Write your own (short!) program to do the domain name IP address
Application Architecture
A Course on Internetworking & Network-based Applications CS 6/75995 Internet-based Applications & Systems Design Kent State University Dept. of Science LECT-2 LECT-02, S-1 2 Application Architecture Today
Communication Networks. Introduction & Socket Programming Yuval Rochman
Communication Networks Introduction & Socket Programming Yuval Rochman Administration Staff Lecturer: Prof. Hanoch Levy hanoch AT cs tau Office hours: by appointment Teaching Assistant: Yuval Rochman yuvalroc
Hostnames. HOSTS.TXT was a bottleneck. Once there was HOSTS.TXT. CSCE515 Computer Network Programming. Hierarchical Organization of DNS
Hostnames CSCE 515: Computer Network Programming ------ Address Conversion Function and DNS RFC 1034, RFC 1035 Wenyuan Xu http://www.cse..edu/~wyxu/ce515f07.html Department of Computer Science and Engineering
This tutorial has been designed for everyone interested in learning the data exchange features of Unix Sockets.
About the Tutorial Sockets are communication points on the same or different computers to exchange data. Sockets are supported by Unix, Windows, Mac, and many other operating systems. The tutorial provides
Elementary Name and Address. Conversions
Elementary Name and Address Domain name system Conversions gethostbyname Function RES_USE_INET6 resolver option gethostbyname2 Function and IPv6 support gethostbyaddr Function uname and gethostname Functions
A Client-Server Transaction. Systemprogrammering 2006 Föreläsning 8 Network Programming. Hardware Org of a Network Host.
Systemprogrammering 2006 Föreläsning 8 Network Programming Topics -server programming model A -Server Transaction Every network application is based on the client-server model: A server process and one
Operating Systems Design 16. Networking: Sockets
Operating Systems Design 16. Networking: Sockets Paul Krzyzanowski [email protected] 1 Sockets IP lets us send data between machines TCP & UDP are transport layer protocols Contain port number to identify
Computer Networks Network architecture
Computer Networks Network architecture Saad Mneimneh Computer Science Hunter College of CUNY New York - Networks are like onions - They stink? - Yes, no, they have layers Shrek and Donkey 1 Introduction
DESIGN AND IMPLEMENT AND ONLINE EXERCISE FOR TEACHING AND DEVELOPMENT OF A SERVER USING SOCKET PROGRAMMING IN C
DESIGN AND IMPLEMENT AND ONLINE EXERCISE FOR TEACHING AND DEVELOPMENT OF A SERVER USING SOCKET PROGRAMMING IN C Elena Ruiz Gonzalez University of Patras University of Granada ERASMUS STUDENT:147 1/100
Elementary Name and Address Conversions
Elementary Name and Address Conversions Domain name system gethostbyname Function RES_USE_INET6 resolver option gethostbyname2 Function and IPv6 support gethostbyaddr Function uname and gethostname Functions
Session NM059. TCP/IP Programming on VMS. Geoff Bryant Process Software
Session NM059 TCP/IP Programming on VMS Geoff Bryant Process Software Course Roadmap Slide 160 NM055 (11:00-12:00) Important Terms and Concepts TCP/IP and Client/Server Model Sockets and TLI Client/Server
Client / Server Programming with TCP/IP Sockets
Client / Server Programming with TCP/IP Sockets Author: Rajinder Yadav Date: Sept 9, 2007 Revision: Mar 11, 2008 Web: http://devmentor.org Email: [email protected] Table of Content Networks... 2 Diagram
IBM i Version 7.2. Programming Socket programming IBM
IBM i Version 7.2 Programming Socket programming IBM IBM i Version 7.2 Programming Socket programming IBM Note Before using this information and the product it supports, read the information in Notices
Generalised Socket Addresses for Unix Squeak 3.9 11
Generalised Socket Addresses for Unix Squeak 3.9 11 Ian Piumarta 2007 06 08 This document describes several new SocketPlugin primitives that allow IPv6 (and arbitrary future other) address formats to be
Networks class CS144 Introduction to Computer Networking Goal: Teach the concepts underlying networks Prerequisites:
CS144 Introduction to Computer Networking Instructors: Philip Levis and David Mazières CAs: Juan Batiz-Benet, Behram Mistree, Hariny Murli, Matt Sparks, and Tony Wu Section Leader: Aki Kobashi [email protected]
Name and Address Conversions
11 Name and Address Conversions 11.1 Introduction All the examples so far in this text have used numeric addresses for the hosts (e.g., 206.6.226.33) and numeric port numbers to identify the servers (e.g.,
KATRAGADDA INNOVATIVE TRUST FOR EDUCATION NETWORK PROGRAMMING. Notes prepared by D. Teja Santosh, Assistant Professor, KPES, Shabad, R.R. District.
KATRAGADDA INNOVATIVE TRUST FOR EDUCATION NETWORK PROGRAMMING 2 P age N E T W O R K P R O G R A M M I N G INTRODUCTION UNIT-I Introduction and TCP/IP When writing programs that communicate across a computer
Domain Name System (1)! gethostbyname (2)! gethostbyaddr (2)!
Lecture 5 Overview Last Lecture Socket Options and elementary UDP sockets This Lecture Name and address conversions & IPv6 Source: Chapter 11 Next Lecture Multicast Source: Chapter 12 1 Domain Name System
Writing Client/Server Programs in C Using Sockets (A Tutorial) Part I. Session 5958. Greg Granger grgran@sas. sas.com. SAS/C & C++ Support
Writing Client/Server Programs in C Using Sockets (A Tutorial) Part I Session 5958 Greg Granger grgran@sas sas.com SAS Slide 1 Feb. 1998 SAS/C & C++ Support SAS Institute Part I: Socket Programming Overview
An Introductory 4.4BSD Interprocess Communication Tutorial
PSD:20-1 An Introductory 4.4BSD Interprocess Communication Tutorial Stuart Sechrest Computer Science Research Group Computer Science Division Department of Electrical Engineering and Computer Science University
IPv6 Enabling CIFS/SMB Applications
IPv6 Enabling CIFS/SMB Applications 2010 Storage Developers Conference Santa Clara Dr David Holder CEng FIET MIEEE [email protected] http://www.erion.co.uk Background Erion David Holder Over twelve
Programming with TCP/IP Best Practices
Programming with TCP/IP Best Practices Matt Muggeridge TCP/IP for OpenVMS Engineering "Be liberal in what you accept, and conservative in what you send" Source: RFC 1122, section 1.2.2 [Braden, 1989a]
Java Programming: Sockets in Java
Java Programming: Sockets in Java Manuel Oriol May 10, 2007 1 Introduction Network programming is probably one of the features that is most used in the current world. As soon as people want to send or
VMCI Sockets Programming Guide VMware ESXi 5.5 VMware Workstation 9.x
VMware ESXi 5.5 VMware Workstation 9.x This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more
Limi Kalita / (IJCSIT) International Journal of Computer Science and Information Technologies, Vol. 5 (3), 2014, 4802-4807. Socket Programming
Socket Programming Limi Kalita M.Tech Student, Department of Computer Science and Engineering, Assam Down Town University, Guwahati, India. Abstract: The aim of the paper is to introduce sockets, its deployment
System calls. Problem: How to access resources other than CPU
System calls Problem: How to access resources other than CPU - Disk, network, terminal, other processes - CPU prohibits instructions that would access devices - Only privileged OS kernel can access devices
sys socketcall: Network systems calls on Linux
sys socketcall: Network systems calls on Linux Daniel Noé April 9, 2008 The method used by Linux for system calls is explored in detail in Understanding the Linux Kernel. However, the book does not adequately
Network Programming. Chapter 11. 11.1 The Client-Server Programming Model
Chapter 11 Network Programming Network applications are everywhere. Any time you browse the Web, send an email message, or pop up an X window, you are using a network application. Interestingly, all network
Goal: learn how to build client/server application that communicate using sockets. An interface between application and network
Socket programming Goal: learn how to build client/server application that communicate using sockets Socket API introduced in BSD4.1 UNIX, 1981 explicitly created, used, released by apps client/server
An Advanced 4.4BSD Interprocess Communication Tutorial
An Advanced 4.4BSD Interprocess Communication Tutorial Samuel J. Leffler Robert S. Fabry William N. Joy Phil Lapsley Computer Systems Research Group Department of Electrical Engineering and Computer Science
Writing a C-based Client/Server
Working the Socket Writing a C-based Client/Server Consider for a moment having the massive power of different computers all simultaneously trying to compute a problem for you -- and still being legal!
Implementing and testing tftp
CSE123 Spring 2013 Term Project Implementing and testing tftp Project Description Checkpoint: May 10, 2013 Due: May 29, 2013 For this project you will program a client/server network application in C on
A Client Server Transaction. Introduction to Computer Systems 15 213/18 243, fall 2009 18 th Lecture, Nov. 3 rd
A Client Server Transaction Introduction to Computer Systems 15 213/18 243, fall 2009 18 th Lecture, Nov. 3 rd 4. Client handles response Client process 1. Client sends request 3. Server sends response
Lecture 17. Process Management. Process Management. Process Management. Inter-Process Communication. Inter-Process Communication
Process Management Lecture 17 Review February 25, 2005 Program? Process? Thread? Disadvantages, advantages of threads? How do you identify processes? How do you fork a child process, the child process
CS162 Operating Systems and Systems Programming Lecture 4. Introduction to I/O (Continued), Sockets, Networking. Recall: Fork and Wait
CS162 Operating Systems and Systems Programming Lecture 4 Introduction to I/O (Continued), Sockets, Networking February 2 nd, 2015 Prof. John Kubiatowicz http://cs162.eecs.berkeley.edu Recall: Fork and
Warning for programmers. Network programming: sockets. ISO/OSI, TCP/IP, network programming. Exercise copying data. Error functions.
Network programming: sockets Antonio Lioy < [email protected] it > english version created and modified by Marco D. Aime < [email protected] > Warning for programmers network programming is dangerously close
System Calls and Standard I/O
System Calls and Standard I/O Professor Jennifer Rexford http://www.cs.princeton.edu/~jrex 1 Goals of Today s Class System calls o How a user process contacts the Operating System o For advanced services
RPG Does TCP/IP (Socket Progamming in RPG IV)
RPG Does TCP/IP (Socket Progamming in RPG IV) Presented by Scott Klement http://www.scottklement.com 2007-2015, Scott Klement There are 10 types of people in the world. Those who understand binary, and
SMTP-32 Library. Simple Mail Transfer Protocol Dynamic Link Library for Microsoft Windows. Version 5.2
SMTP-32 Library Simple Mail Transfer Protocol Dynamic Link Library for Microsoft Windows Version 5.2 Copyright 1994-2003 by Distinct Corporation All rights reserved Table of Contents 1 Overview... 5 1.1
DNS Domain Name System
Domain Name System DNS Domain Name System The domain name system is usually used to translate a host name into an IP address Domain names comprise a hierarchy so that names are unique, yet easy to remember.
Applications and Services. DNS (Domain Name System)
Applications and Services DNS (Domain Name Service) File Transfer Protocol (FTP) Simple Mail Transfer Protocol (SMTP) Malathi Veeraraghavan Distributed database used to: DNS (Domain Name System) map between
Socket programming. Socket Programming. Languages and Platforms. Sockets. Rohan Murty Hitesh Ballani. Last Modified: 2/8/2004 8:30:45 AM
Socket Programming Rohan Murty Hitesh Ballani Last Modified: 2/8/2004 8:30:45 AM Slides adapted from Prof. Matthews slides from 2003SP Socket programming Goal: learn how to build client/server application
Best practices in IPv6 enabled networking software development. <[email protected]>
Best practices in IPv6 enabled networking software development 1 The IPv6 Protocol 1 New version of the Internet Protocol Devised by IETF to replace IPv4 It solves all the problems of IPv4 Address space
What is CSG150 about? Fundamentals of Computer Networking. Course Outline. Lecture 1 Outline. Guevara Noubir [email protected].
What is CSG150 about? Fundamentals of Computer Networking Guevara Noubir [email protected] CSG150 Understand the basic principles of networking: Description of existing networks, and networking mechanisms
Introduction to Computer Networks
Introduction to Computer Networks Chen Yu Indiana University Basic Building Blocks for Computer Networks Nodes PC, server, special-purpose hardware, sensors Switches Links: Twisted pair, coaxial cable,
The exam has 110 possible points, 10 of which are extra credit. There is a Word Bank on Page 8. Pages 7-8 can be removed from the exam.
CS326e Spring 2014 Midterm Exam Name SOLUTIONS UTEID The exam has 110 possible points, 10 of which are extra credit. There is a Word Bank on Page 8. Pages 7-8 can be removed from the exam. 1. [4 Points]
Programming With Sockets 2
Programming With Sockets 2 This chapter presents the socket interface and illustrates them with sample programs. The programs demonstrate the Internet domain sockets. What Are Sockets page 12 Socket Tutorial
Network Programming TDC 561
Network Programming TDC 561 Lecture # 1 Dr. Ehab S. Al-Shaer School of Computer Science & Telecommunication DePaul University Chicago, IL 1 Network Programming Goals of this Course: Studying, evaluating
Project 1: Implement a simple hosts framework using UNIX TCP Sockets to demonstrate the concept of Mobile Agents
Project 1: Implement a simple hosts framework using UNIX TCP Sockets to demonstrate the concept of Mobile Agents Due date: October 15 (Monday), 2007 Requirements This exercise should be done individually.
2057-15. First Workshop on Open Source and Internet Technology for Scientific Environment: with case studies from Environmental Monitoring
2057-15 First Workshop on Open Source and Internet Technology for Scientific Environment: with case studies from Environmental Monitoring 7-25 September 2009 TCP/IP Networking Abhaya S. Induruwa Department
Packet Sniffing and Spoofing Lab
SEED Labs Packet Sniffing and Spoofing Lab 1 Packet Sniffing and Spoofing Lab Copyright c 2014 Wenliang Du, Syracuse University. The development of this document is/was funded by the following grants from
q Connection establishment (if connection-oriented) q Data transfer q Connection release (if conn-oriented) q Addressing the transport user
Transport service characterization The Transport Layer End-to-End Protocols: UDP and TCP Connection establishment (if connection-oriented) Data transfer Reliable ( TCP) Unreliable / best effort ( UDP)
TFTP Usage and Design. Diskless Workstation Booting 1. TFTP Usage and Design (cont.) CSCE 515: Computer Network Programming ------ TFTP + Errors
CSCE 515: Computer Network Programming ------ TFTP + Errors Wenyuan Xu Department of Computer Science and Engineering University of South Carolina TFTP Usage and Design RFC 783, 1350 Transfer files between
Direct Sockets. Christian Leber [email protected]. Lehrstuhl Rechnerarchitektur Universität Mannheim 25.1.2005
1 Direct Sockets 25.1.2005 Christian Leber [email protected] Lehrstuhl Rechnerarchitektur Universität Mannheim Outline Motivation Ethernet, IP, TCP Socket Interface Problems with TCP/IP over Ethernet
Linux Kernel Architecture
Linux Kernel Architecture Amir Hossein Payberah [email protected] Contents What is Kernel? Kernel Architecture Overview User Space Kernel Space Kernel Functional Overview File System Process Management
Software changes for Website and Application IPv6 Readiness
Software changes for Website and Application IPv6 Readiness Ahmed Abu-Abed, P.Eng. Tamkien Systems [email protected] 1 Agenda Introduction Enabling Website IPv6 and Forum Certification Intro to Socket
Network Programming using sockets
Network Programming using sockets TCP/IP layers Layers Message Application Transport Internet Network interface Messages (UDP) or Streams (TCP) UDP or TCP packets IP datagrams Network-specific frames Underlying
1 Introduction: Network Applications
1 Introduction: Network Applications Some Network Apps E-mail Web Instant messaging Remote login P2P file sharing Multi-user network games Streaming stored video clips Internet telephone Real-time video
MatrixSSL Porting Guide
MatrixSSL Porting Guide Electronic versions are uncontrolled unless directly accessed from the QA Document Control system. Printed version are uncontrolled except when stamped with VALID COPY in red. External
Operating Systems. Privileged Instructions
Operating Systems Operating systems manage processes and resources Processes are executing instances of programs may be the same or different programs process 1 code data process 2 code data process 3
