全部博文(261)
发布时间:2017-11-15 09:22:23
原文:http://blog.csdn.net/tennysonsky/article/details/44062173 如何让两个套接字都能成功绑定8000端口呢?这时候就需要要到端口复用了。端口复用允许在一个应用程序可以把 n 个套接字绑在一个端口上而不出错。设置socket的SO_REUSEADDR选项,即可实现端口复用: opt = 1;  .........【阅读全文】
发布时间:2017-11-14 17:12:11
#include <unistd.h>#include <sys/stat.h>#include <sys/wait.h>#include <sys/types.h>#include <fcntl.h>#include <stdlib.h>#include <stdio.h>#include <errno.h>#include <string.h>#include <sign.........【阅读全文】
发布时间:2017-11-13 17:56:30
socket函数:int socket(int domain, int type, int protocol); 中的protocol 定义如下:#define IPPROTO_IP 0 /* dummy for IP */#define IPPROTO_ICMP 1 /* control message protocol */#define IPPROTO_IGMP 2 /* internet group management protocol */#define IPPROTO_GGP 3 /* gateway^2 (depr.........【阅读全文】
发布时间:2017-11-12 17:35:42
都只有一个的情况下,否则也要加锁。下面是循环缓存区的代码示例:fifo.h#ifndef FIFO_H#define FIFO_Htypedef unsigned char uchar;typedef unsigned int uint;struct _pfifo{ uchar *.........【阅读全文】
发布时间:2017-11-12 14:25:28
原文地址:http://blog.csdn.net/li_wen01/article/details/52665505 这里需要特别注意线程资源的回收,因为每次与客户端建立连接,服务端都会创建连个线程,因此我们需要在客户端断开连接时回收线程资源。在这里有两种方式来检测客户端是否已经断开连接。第一:上面server.c服务端使用的,当客户端断开连接.........【阅读全文】
HYYLINUX2013-07-04 17:01
HYYLINUX:本博客只是本人一个学习记录。大部分博文参照:http://blog.chinaunix.net/space.php?uid=24219701&do=blog&view=me&frmd=-1&classid=0&page=21
http://home.lupaworld.com/space-uid-26540.html 一个linuxer的博客
回复 | 举报HYYLINUX2012-02-25 10:02
本博客只是本人一个学习记录。大部分博文参照:http://blog.chinaunix.net/space.php?uid=24219701&do=blog&view=me&frmd=-1&classid=0&page=21