1 Star 0 Fork 3

jxva/concurrent-tcp-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.h 764 Bytes
一键复制 编辑 原始数据 按行查看 历史
laozi2 提交于 2015-12-23 17:35 . revise
#ifndef _CONFIG_H_
#define _CONFIG_H_
#include <netinet/in.h>
typedef struct config_s config_t;
typedef struct connection_config_s connection_config_t;
typedef struct test_data_s test_data_t;
struct test_data_s {
u_char* start;
u_char* end;
};
struct connection_config_s {
unsigned int requests;
unsigned int sleep_ms;
unsigned retry:1;
unsigned random:1;
};
struct config_s {
char server_name[32];
char ip[16];
unsigned short port;
struct sockaddr_in server_addr;
socklen_t socklen;
unsigned int connection_pool_n;
test_data_t* test_data;
unsigned int test_data_n;
connection_config_t def_con_config;
connection_config_t *con_config;
};
#endif //_CONFIG_H_
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/jxva/concurrent-tcp-client.git
git@gitee.com:jxva/concurrent-tcp-client.git
jxva
concurrent-tcp-client
concurrent-tcp-client
master

搜索帮助