资源简介
TCP/IP网络编程 (尹圣雨)源代码+PDF书籍
代码片段和文件信息
#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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 443 2009-10-21 16:08 TCPIP_Src\Chapter1 source\fd_seri.c
文件 1050 2009-10-27 16:15 TCPIP_Src\Chapter1 source\hello_client.c
文件 1127 2013-12-19 09:43 TCPIP_Src\Chapter1 source\hello_client_win.c
文件 1299 2009-10-28 08:47 TCPIP_Src\Chapter1 source\hello_server.c
文件 1339 2009-10-27 16:33 TCPIP_Src\Chapter1 source\hello_server_win.c
文件 740 2009-07-28 06:00 TCPIP_Src\Chapter1 source\low_open.c
文件 749 2009-08-26 18:35 TCPIP_Src\Chapter1 source\low_read.c
文件 1286 2009-09-01 09:32 TCPIP_Src\Chapter10 source\echo_client.c
文件 1453 2009-09-15 02:50 TCPIP_Src\Chapter10 source\echo_mpclient.c
文件 1858 2009-11-23 15:47 TCPIP_Src\Chapter10 source\echo_mpserv.c
文件 402 2009-10-30 08:37 TCPIP_Src\Chapter10 source\fork.c
文件 1265 2009-09-15 02:17 TCPIP_Src\Chapter10 source\remove_zombie.c
文件 416 2009-09-10 17:23 TCPIP_Src\Chapter10 source\sigaction.c
文件 423 2009-09-10 15:02 TCPIP_Src\Chapter10 source\signal.c
文件 616 2009-09-09 03:51 TCPIP_Src\Chapter10 source\wait.c
文件 589 2009-09-09 20:25 TCPIP_Src\Chapter10 source\waitpid.c
文件 375 2009-09-16 15:31 TCPIP_Src\Chapter10 source\zombie.c
文件 2132 2009-11-23 15:58 TCPIP_Src\Chapter11 source\echo_storeserv.c
文件 340 2009-09-14 19:02 TCPIP_Src\Chapter11 source\pipe1.c
文件 562 2009-09-14 19:59 TCPIP_Src\Chapter11 source\pipe2.c
文件 576 2009-09-14 21:19 TCPIP_Src\Chapter11 source\pipe3.c
文件 1286 2009-08-26 18:37 TCPIP_Src\Chapter12 source\echo_client.c
文件 2030 2009-09-18 09:41 TCPIP_Src\Chapter12 source\echo_selectserv.c
文件 2099 2009-09-28 07:40 TCPIP_Src\Chapter12 source\echo_selectserv_win.c
文件 800 2009-09-17 07:50 TCPIP_Src\Chapter12 source\select.c
文件 1572 2009-10-27 21:15 TCPIP_Src\Chapter13 source\oob_recv.c
文件 1939 2009-10-27 21:23 TCPIP_Src\Chapter13 source\oob_recv_win.c
文件 929 2009-10-27 21:14 TCPIP_Src\Chapter13 source\oob_send.c
文件 1006 2009-10-27 21:23 TCPIP_Src\Chapter13 source\oob_send_win.c
文件 1303 2009-10-27 21:20 TCPIP_Src\Chapter13 source\peek_recv.c
............此处省略124个文件信息
- 上一篇:模拟电子学基础答案陈光梦
- 下一篇:Tesla汽车UI界面
相关资源
- windows网络编程__罗莉琴__人民邮电出版
- 网络编程实用教程
- 《TCP/IP:协议分析与应用编程》课后
- linux下基于socket和curses的双人弹球游戏
- 计算机网络socket编程实验
- linux下socket can 编程详解
- FANUC机器人Socket Message通讯设置及使用
- Delphi简单实现局域网远程开机
- 易语言websocket服务器源码
- websocket规范 RFC6455 中文版
- 富士康H61S主板最新BIOS,支持22NCPU
- Socket-UDP整合消息接收,发送
- websocket-rtsp-proxy-test.zip
- 基于QTsocket的局域网聊天室
- SuperSocket服务端与客户端通信
- 网络编程socket文件图片等传送
- 网络编程实用教程第二版_各章的源程
- unix网络编程英文版第三版pdf
- tomcat7.0.42 下部署websocket需要替换的包
- 安卓手机socket通信服务端和客户端
- 物联网,WEBSOCKET丰富案例
- nodejs聊天室
- websocket简单web项目,直接部署可使用
- Windows与Linux之间使用socket进行文件传
- 基于SOCKECT的TCP的通信
- Socket实现一对一聊天
- 基于Socket的局域网即时通信系统的开
- 高德地图+websocket
- libwebsockets-v1.6-stable.tar.gz
- HololensSocketDemo.rar
评论
共有 条评论