moved NETWORK_MAX_CONNS from network.h to network.c

This commit is contained in:
Fufu Fang 2019-04-18 23:10:07 +01:00
parent 7cafdbf7d4
commit d9cdc20b42
2 changed files with 2 additions and 2 deletions

View File

@ -8,6 +8,8 @@
#include <stdio.h>
#include <unistd.h>
#define NETWORK_MAX_CONNS 10
/* ----------------- External variables ---------------------- */
CURLSH *CURL_SHARE;
NetworkConfigStruct NETWORK_CONFIG;

View File

@ -3,8 +3,6 @@
#include "link.h"
#define NETWORK_MAX_CONNS 10
typedef struct {
char *memory;
size_t size;