发布时间:2016-12-21 23:04:20
在传统的UNIX系统上,判断一个进程实际正在做什么相当困难,用户只有根据从文件系统以及ps这样的工具取得的间接数据和经验来推测,而在Linux中,用户可以通过strace命令直接观察一个进程,进程的每一次系统调用,每接收到一个信号,这个命令都能显示出来。用户还可以把strace附在一个正在执行的进程上,监视一会儿该进程.........【阅读全文】
发布时间:2016-09-04 10:16:28
11.3 多播单播用于两个主机之间的端对端通信,广播用于一个主机对整个局域网上所有主机上的数据通信。单播和广播是两个极端,要么对一个主机进行通信,要么对整个局域网上的主机进行通信。实际情况下,经常需要对一组特定的主机进行通信,而不是整个局域网上的所有主.........【阅读全文】
发布时间:2016-09-01 16:00:50
Welcome to the wonderful world of portability... or rather the lack of it. Before we start analyzing these two options in detail and take a deeper look how different operating systems handle them, it should be noted that the BSD socket implementation is the mother of all socket implementati.........【阅读全文】
发布时间:2016-09-01 14:32:11
IP multicasting provides the capability for anapplication to send a single IP datagram that a group of hosts in a networkcan receive. The hosts that are in the group may reside on a singlesubnet or may be on different subnets that connect multicast-capablerouters. Hosts may join and leave .........【阅读全文】