摘要:
TCP/IP socket programmingThis is a quick guide/tutorial to learning socket programming in C language on a Linux system. "Linux" because the code snippets shown over here will work only on a Linux system and not on Windows. Thewindows api to socket programmingis called winsock and we shall 阅读全文
posted @ 2013-07-26 15:01
Daniel.G
阅读(7287)
评论(0)
推荐(0)
摘要:
Typically two processes communicate with each other on a single system through one of the following inter process communication techniques.PipesMessage queuesShared memoryThere are several other methods. But the above are some of the very classic ways of interprocess communication.But have you ever 阅读全文
posted @ 2013-07-26 14:51
Daniel.G
阅读(1307)
评论(0)
推荐(0)
摘要:
Characteristics of the UDP protocolThe UDP protocol (User Datagram Protocol) is a connectionless orientated protocol of thetransport layerof theTCP/IPmodel. This protocol is very simple given that it does not provide error detection (it is not connection orientated...).The UDP segment header is ther 阅读全文
posted @ 2013-07-26 09:30
Daniel.G
阅读(465)
评论(0)
推荐(0)
摘要:
he characteristics of TCP protocolTCP(which meansTransmission Control Protocol) is one of the main protocols of the transport layer of theTCP/IPmodel. It makes it possible, at application level, to manage data coming from (or going to) the lower layer of the model (i.e. theIPprotocol). When data is 阅读全文
posted @ 2013-07-26 09:29
Daniel.G
阅读(828)
评论(0)
推荐(0)