资源简介
《TCP IP网络编程》尹圣雨+源代码,很适合入门计算机网络编程
代码片段和文件信息
#include
#include
#include
#include
int main(void)
{
int fd1 fd2 fd3;
fd1=socket(PF_INET SOCK_STREAM 0);
fd2=open(“test.dat“ O_CREAT|O_WRONLY|O_TRUNC);
fd3=socket(PF_INET SOCK_DGRAM 0);
printf(“file descriptor 1: %d\n“ fd1);
printf(“file descriptor 2: %d\n“ fd2);
printf(“file descriptor 3: %d\n“ fd3);
close(fd1);
close(fd2);
close(fd3);
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 79050947 2019-07-22 17:32 《TCP IP网络编程》.((韩)尹圣雨).pdf
文件 10244 2016-05-03 11:16 TCP IP网络编程源码\.DS_Store
....... 6148 2016-05-03 11:16 TCP IP网络编程源码\Chapter1 source\.DS_Store
....... 443 2009-10-21 16:08 TCP IP网络编程源码\Chapter1 source\fd_seri.c
....... 1050 2009-10-27 16:15 TCP IP网络编程源码\Chapter1 source\hello_client.c
....... 1127 2013-12-19 09:43 TCP IP网络编程源码\Chapter1 source\hello_client_win.c
....... 1299 2009-10-28 08:47 TCP IP网络编程源码\Chapter1 source\hello_server.c
....... 1339 2009-10-27 16:33 TCP IP网络编程源码\Chapter1 source\hello_server_win.c
....... 740 2009-07-28 06:00 TCP IP网络编程源码\Chapter1 source\low_open.c
....... 749 2009-08-26 18:35 TCP IP网络编程源码\Chapter1 source\low_read.c
....... 1286 2009-09-01 09:32 TCP IP网络编程源码\Chapter10 source\echo_client.c
....... 1453 2009-09-15 02:50 TCP IP网络编程源码\Chapter10 source\echo_mpclient.c
....... 1858 2009-11-23 15:47 TCP IP网络编程源码\Chapter10 source\echo_mpserv.c
....... 402 2009-10-30 08:37 TCP IP网络编程源码\Chapter10 source\fork.c
....... 1265 2009-09-15 02:17 TCP IP网络编程源码\Chapter10 source\remove_zombie.c
....... 416 2009-09-10 17:23 TCP IP网络编程源码\Chapter10 source\sigaction.c
....... 423 2009-09-10 15:02 TCP IP网络编程源码\Chapter10 source\signal.c
....... 616 2009-09-09 03:51 TCP IP网络编程源码\Chapter10 source\wait.c
....... 589 2009-09-09 20:25 TCP IP网络编程源码\Chapter10 source\waitpid.c
....... 375 2009-09-16 15:31 TCP IP网络编程源码\Chapter10 source\zombie.c
....... 2132 2009-11-23 15:58 TCP IP网络编程源码\Chapter11 source\echo_storeserv.c
....... 340 2009-09-14 19:02 TCP IP网络编程源码\Chapter11 source\pipe1.c
....... 562 2009-09-14 19:59 TCP IP网络编程源码\Chapter11 source\pipe2.c
....... 576 2009-09-14 21:19 TCP IP网络编程源码\Chapter11 source\pipe3.c
....... 1286 2009-08-26 18:37 TCP IP网络编程源码\Chapter12 source\echo_client.c
....... 2030 2009-09-18 09:41 TCP IP网络编程源码\Chapter12 source\echo_selectserv.c
....... 2099 2009-09-28 07:40 TCP IP网络编程源码\Chapter12 source\echo_selectserv_win.c
....... 800 2009-09-17 07:50 TCP IP网络编程源码\Chapter12 source\select.c
....... 1572 2009-10-27 21:15 TCP IP网络编程源码\Chapter13 source\oob_recv.c
....... 1939 2009-10-27 21:23 TCP IP网络编程源码\Chapter13 source\oob_recv_win.c
............此处省略127个文件信息
相关资源
- TCP_UDP对结构体加密数据传输
- 基于PIC的TCP/IP网络协议和zigbee无线传
- 计算机网络自顶向下方法答案(第六
- 欧姆龙PLC tcp通信工具
- 欧姆龙以太网通讯TCP/UDP及欧姆龙PLC程
- 计算机网络管理员国家职业标准
- 流媒体相关协议标准RTP/RTSP/RTCP PDF文档
- 航海模拟器中DCPA TCPA的算法
- 计算机网络精讲视频教程
- TCPMP 支持ce6.0的播放器
- 计算机网络 第7版 谢希仁 高清完美书
- TCP/IP协议详解3卷全_高清_带书签
- 计算机网络(第5版)(Computer Networ
- windows网络编程__罗莉琴__人民邮电出版
- 计算机网络课程设计 小型企业的
- 北航研究生计网实验报告.rar
- stm32103c8t6ESP8266串口转WIFI模块TCP服务器
- 计算机网络校园网课程设计
- 计算机网络24分游戏课设完整版
- DOS下的TCP-IP协议库文件原代码.rar
- 计算机网络(谢仁希第五版)课后答
- 计算机网络课程设计—设计一个校园
- 计算机网络第六版 教学视屏 网盘
- 计算机网络第7版谢希仁复习题完整版
- 网络编程实用教程
- 《TCP/IP详解卷2:实现》pdf
- 计算机网络讲义-陈鸣
- 东北大学计算机网络期末试题+答案
- 《TCP/IP:协议分析与应用编程》课后
- Modbus—TCP协议
评论
共有 条评论