资源简介
基于网络编程实现tcp
代码片段和文件信息
/*
* eunqueue.c
*
* Created on: Mar 1 2016
* Author: peipei
*Description :
*/
#include “../../iridium_imp/iridium_status.h“
#include “../../include/log_common.h“
#include “squeue.h“
#define SESSION_QUEUE_MAX 15 //计算从传时间
EQueue* e_queue_new()
{
EQueue *queue = NULL;
queue = S_MALLOC(sizeof(EQueue));
memset(queue 0 sizeof(EQueue));
return queue;
}
EList* e_list_new()
{
EList *list = NULL;
if((list = malloc(sizeof(EList))))
{
memset(list 0 sizeof(EList));
}
return list;
}
void e_node_free(EList *list)
{
if(list)
{
list->prev = NULL;
list->next = NULL;
free(list);
}
}
/**
* 从头部出队
*/
EList *e_queue_pop_head(EQueue *queue)
{
EList *list = NULL;
if(queue && queue->head)
{
list = queue->head;
if(queue->head->next)
{
queue->head = queue->head
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4498 2017-05-23 20:45 tcp\squeue.c
文件 1694 2017-05-23 20:41 tcp\squeue.h
文件 61907 2017-06-21 17:29 tcp\stcp.c
文件 828 2017-06-19 21:31 tcp\stcp.h
文件 6812 2017-06-17 11:38 tcp\stcp_define.h
文件 1617 2017-05-23 20:35 tcp\stcp_status.h
文件 1324 2017-06-17 21:30 tcp\tcp_option.c
文件 359 2017-06-17 20:08 tcp\tcp_option.h
目录 0 2017-06-22 10:00 tcp
----------- --------- ---------- ----- ----
79039 9
- 上一篇:语音播报“您有一条新的订单”
- 下一篇:Labview创建Excel报表
相关资源
- 易语言和三菱plc通信tcp mc
- Labview与西门子1200 plc TCP通信
- 通过TCP / IP与ModBus PLC通信
- [免费]TCP-IP详解--1. 协议
- TCP UDP 网络调试工具
- Linux TCP 编程步骤
- STM32 TCP并发服务器源码可与多个客户
- STM32 DP83848 网络驱动程序
- TCP/UDP开发应用
- Labview tcp/ip
- 真正无锁IOCP回射服务器IOCP Tcp EchoSe
- linux C/S聊天,基于TCP的socket网络编程
- tcp多进程文件传输服务器
- Qt写的UDP组播服务端
- 基于TCP协议的聊天工具,包括客户端
- udp聊天程序文档,用于网络的课程设
- 计算机网络仿真实验,NS2-TCP拥塞协议
- 基于Ethernet的车载Bootloader设计与实现
- tcp聊天代码.rar
- 计算机网络笔试题目:通讯协议的相
- 基于RSA的秘钥加密聊天程序
- linux下的tcp和udp发包简单发包程序
- Qt:Tcp服务器与客户端程序
- modbus TCP 通讯类库和
- labview基于以太网的图片发送接收并显
- TCP多路分流
- 最简单的TCP网络封包解包(补充)-序
- SocketTool2_For_TCP_UDP.rar
- 基于socket的聊天工具源码包含Makefil
- 基于tcp/ip协议的简单局域网聊天室
评论
共有 条评论