Introduction * File and Record Locking * A Simple Client-Server Example * Pipes * FIFOs * Streams and Messages * Name Spaces * System V IPC * Message Queues * Semaphores * Shared Memory * Sockets and TLI * Summary Chapter 4. A Network Primer Chapter 5. Communication Protocols Introduction ...
原作名:Unix Network Programming 译者:杨继张 出版年:2006-1 页数:848 定价:98.00元 装帧:平装 ISBN:9787302119746 豆瓣评分 9.5 1079人评价 5星 77.8% 4星 18.6% 3星 3.0% 2星 0.1% 1星 0.5% 评价: 写笔记 写书评 加入购书单 分享到 推荐
UNIX Network Programming, Volume 1, Second Edition: Networking APIs: Sockets and XTI, Prentice Hall, 1998, ISBN 0-13-490012-X. Table of Contents (PostScript) (HTML) (ASCII) Preface (PostScript) (HTML) Sample chapter: Chapter 11: Advanced Name and Address Conversions, 57 pages (PDF,...
W. Richard Stevens. Unix Network Programming - Interprocess Communications, Vol. II. Prentice Hall PTR, 2nd, edition, 1998.W. Richard Stevens, UNIX Network Program- ming: Interprocess Communication, Volume 2. PTR Prentice-Hall, 1998.W.R Stevens, "Unix Network Program- ming,Interprocess ...
Unix Network Programming, Volume 1的创作者· ··· W·Richard Stevens作者 原文摘录 ···(全部) There are two reasons for the TIME_WAIT state: 1. To implement TCP's full-duplex connection termination reliably. 2. To allow old duplicate segments to expire in the network. (查看原文) y1...
On the i386 the host byte order is Least Significant Byte first,whereas the network byte order, as used on the Internet, is Most Significant Byte first. htonl, htons, ntohl, ntohs - convert values between host and network byte order
主要有两点一是生成libunp.a这个库,二是得到unp.h、config.h这两个个头文件。 1,安装编译器,为了齐全还是安装一下build-essential sudo apt-get install build-essential 2,下载本书的头文件及示例源码 unpv12e.tar.gz(这个编译有问题)unpv13e.tar.gz下不了,可以google一下。
一、UNIX NETWORK PROGRAMMING OVERVIEW UNIX网络编程代表了在UNIX操作系统上开发网络应用的技术和方法。它涵盖了利用UNIX操作系统提供的API接口,实施的网络通信能力和数据交换。这些APIs通常是以C语言库的形式存在,提供了一系列的网络功能,如套接字编程、进程间通信(IPC)以及其他相关的网络服务接口。通过学习并使用这些接...
[1] UNIX Network Programming Volume 1 W.Richard Stevens 1998 Prentice Hall [2] 计算机实用网络编程 汤毅坚 1993 人民邮电出版社 [3] UNIX? SYSTEM V RELEASE 4 Programmer's Guide:STREAMS AT&T 1990 Prentice Hall [4] UNIX? SYSTEM V RELEASE 4 Network Programmer's Guide AT&T 1990 Prentice Hall ...
《Unix Network Programing》W.Richard Stevens:第一卷讲BSD Socket网络编程接口和另外一种网络编程接口的,不过现在一般都用BSD Socket,所以这本书只要看大约一半多就可以了。第二卷没有设计到网络的东西,主要讲进程间通讯和Posix线程。所以看了《APUE》以后,就可以看它了,基本上系统的东西就由《...