发布时间:2013-05-07 10:15:43
服务器#include <sys/types.h> #include <sys/socket.h> #include <string.h> #include <netinet/in.h> #include <stdio.h> #include <stdlib.h> #define MAXLINE 1024 #define SERV_PORT 8000struct MSG_PACK{ char cmd; char.........【阅读全文】
发布时间:2013-05-07 10:14:57
#include <stdarg.h>#include <stdio.h>#include <netdb.h>#include <sys/socket.h>#include <netinet/in.h>#include <errno.h>#include <sys/select.h>#include <math.h>void process_client(int s) { char buff[128]; int rc,maxfd; &nbs.........【阅读全文】
发布时间:2013-05-07 10:13:29
转自:http://qiang.ws/index.php/archives/195要使用UDP协议进行通讯,需要以下几个步骤:服务器端(接收着端):创建套接字。将创建的套接字绑定到本地的地址和端口上。等待接收数据。关闭套接字。客户端(发送端):创建套接.........【阅读全文】
发布时间:2013-05-07 09:59:22
Linux下的单进程多用户TCP服务器,采用select方法实现。/************************************************* * File name : server.c * Description : 单进程并发服务器 * Author  .........【阅读全文】
发布时间:2013-05-07 09:56:55
内核态 #include <linux/module.h>#include <linux/kernel.h>#include <linux/init.h>#include <linux/types.h>#include <linux/netdevice.h>#include <linux/skbuff.h>#include <linux/netfilter.h>#include <linux/inet.h>#include <linux/in.h>#include <linux/ip.h>#include <linux/netlink.h.........【阅读全文】