此博文是学习UNP(UNIX Network Programming)后的读书笔记,供以后自己翻阅回顾知识。
TCP、UDP概述
在前面《计算机网络与TCP/IP》栏目下已经介绍过一些关于TCP、UDP的相关知识TCP/IP(三):传输层TCP与UDP,这里只是简单从UNIX网络编程的角度介绍TCP、UDP协议。我们都知道UDP 缺乏可靠性、无连接的,面向数据报 的协议,如果想确保数据报到达目的地...
分类:
其他好文 时间:
2016-04-19 12:19:43
阅读次数:
186
1 #!/usr/bin/env python 2 #--*-- coding:utf-8 --*-- 3 # Python Network Programming Cookbook -- Chapter – 1 4 # This program is optimized for Python 2....
分类:
编程语言 时间:
2015-12-21 16:10:20
阅读次数:
180
前言 当开发者从单线程开发模式过渡到多线程环境,一个比较棘手的问题就是如何在一个线程中返回数据,众所周知,run()方法和start()方法不会返回任何值。笔者在学习《Java Network Programming》一书时,总结三种常用方法:定义获取器、静态方法回调以及实例方法回调。定义获取...
分类:
编程语言 时间:
2015-11-22 11:10:04
阅读次数:
448
文章出自:Python socket – network programming tutorial by Silver Moon原创译文,如有版权问题请联系删除。Network programing in Python:Part2: Programing sockets servers.在所有的通信...
分类:
编程语言 时间:
2015-09-25 21:43:23
阅读次数:
385
1 ??网络编程书籍 Books by Richard Stevens (reverse chronological) UNIX Network Programming, Volume 2, Second Edition: Interprocess Communications, Prentice Hall, 1999. ? UNIX Network Programming...
分类:
其他好文 时间:
2015-09-07 18:10:51
阅读次数:
223
Book DescriptionLearn to develop iPhone and iPad applications for networked enterprise environments The iPhone and iPad have made a powerful impact on...
分类:
移动开发 时间:
2015-09-03 00:40:16
阅读次数:
178
Filesystems that manage the storage across a network of machines are called distributed filesystems. Since they are network based, all the complications of network programming kick in, thus making dist...
分类:
其他好文 时间:
2015-08-14 19:18:42
阅读次数:
253
第二章主要在上一章的基础上介绍了以下内容: 1. ForkingMixIn 2. ThreadingMixIn 3. select.select 4. select.epoll 5. Diesel库ForkingMixIn 和 ThreadingMixIn属于soc...
分类:
编程语言 时间:
2015-08-07 01:46:45
阅读次数:
233
原文:http://cstdlib.com/tech/2014/10/09/read-unix-network-programming-1/文章写的很清楚, 适合初学者最近看了《UNIX网络编程 卷1:套接字联网API》, 英文名叫Unix Network Programming啦,后来上网查了查,...
Python Network Programming
分类:
编程语言 时间:
2015-07-24 18:08:58
阅读次数:
195