This is to describe how to write networking programs in C using the BSD Socket Layer API. This mostly applies to almost all other languages with only minor modifications.
struct protoent *protocol; int serverfd;
protocol=getprotobyname("tcp"); if (!protocol) {
printf("Could not getprotobyname");
exit(1)?;
} server=socket(PF_INET,SOCK_STREAM,protocol.p_proto); if (server<0) {
perror("socket");
exit(2);
}
struct sockaddr_in address; address.sin_family = AF_INET; address.sin_port = htons(port goes here) address.sin_addr.s_addr = INADDR_ANY;
if (bind(serverfd,&address,sizeof(address))<0) {
perror("bind");
exit(3);
}
if (listen(serverfd,5)<0) {
perror("listen");
exit(4)?;
}
int sockfd; struct sockaddr_in clientaddress;
sockfd=accept(serverfd,&clientaddress,sizeof(clientaddress));
if (sockfd<0) {
perror("accept");
exit(5)?;
}
This creates a new socket (called "sockfd") that we can talk to the client that connected with. We can go back and do the accept(2) again to get another client socket etc.
struct sockaddr_in address;
address.sin_family = AF_INET; address.sin_port = htons(port goes here);
struct hostent *host; int i=0; int success=0; host = gethostbyname("host.name.goes.here"); if (!host) {
fprintf(stderr,"gethostbyname: %s",hstrerror(herrno));
exit(5)?;
} for (i=0;i<host->h_length;i++) {
if(connect(sockfd,&address,sizeof(address))==0) {
success=1; break;
} fprintf(stderr,"connect(%s):%s",inet_ntoa(address.sin_addr),strerror(errno));
} if (!success) {
fprintf(stderr,"hostname is unreachable");
exit(6)?;
}
Done!
Now, after you have TCP connection, either by having accept(2) or connect(2) return, you want to send traffic over it.
char buffer[65535?; int bytes; bytes=read(sockfd,buffer,sizeof(buffer)); if (bytes<0) {
perror("read");
} else if (bytes==0) {
close(sockfd); printf("Socket closed"); exit(0);
} process data
The number of bytes read is in "bytes", if bytes is 0, then the other end closed the connection.
char buffer[65535?; int bytes; int remaining; populate buffer with data, set bytes to being the number of bytes to write, eg: strcpy(buffer,"Hello World"); bytes=strlen(buffer); remaining=bytes; while(remaining>0) {
ret=write(sockfd,buffer+(bytes-remaining),remaining); if (ret<0) {
perror("write"); close(ret);
exit(8)?;
} remaining=remaining-ret;
}
(To be written)
(To be written)
(To be written)
2 pages link to NetworkProgramming:
lib/main.php:944: Notice: PageInfo: Cannot find action page
lib/main.php:839: Notice: PageInfo: Unknown action