Browse Source

update: header file flags

master
Dnomd343 2 years ago
parent
commit
4b9e5655e8
  1. 4
      include/common.h
  2. 4
      include/load.h
  3. 4
      include/sip003.h
  4. 4
      include/utils/dns.h
  5. 4
      include/utils/logger.h
  6. 4
      include/utils/network.h
  7. 4
      include/utils/process.h

4
include/common.h

@ -1,5 +1,5 @@
#ifndef _COMMON_H_
#define _COMMON_H_
#ifndef COMMON_H_
#define COMMON_H_
#define VERSION "1.0.0-beta"

4
include/load.h

@ -1,5 +1,5 @@
#ifndef _LOAD_H_
#define _LOAD_H_
#ifndef LOAD_H_
#define LOAD_H_
typedef struct {
int is_udp_proxy;

4
include/sip003.h

@ -1,5 +1,5 @@
#ifndef _SIP003_H_
#define _SIP003_H_
#ifndef SIP003_H_
#define SIP003_H_
#include "load.h"

4
include/utils/dns.h

@ -1,5 +1,5 @@
#ifndef _DNS_H_
#define _DNS_H_
#ifndef DNS_H_
#define DNS_H_
char* dns_resolve(const char *domain);

4
include/utils/logger.h

@ -1,5 +1,5 @@
#ifndef _LOG_H
#define _LOG_H
#ifndef LOG_H
#define LOG_H
enum {
LOG_DEBUG,

4
include/utils/network.h

@ -1,5 +1,5 @@
#ifndef _NETWORK_H_
#define _NETWORK_H_
#ifndef NETWORK_H_
#define NETWORK_H_
extern int PROXY_EXIT;

4
include/utils/process.h

@ -1,5 +1,5 @@
#ifndef _PROCESS_H_
#define _PROCESS_H_
#ifndef PROCESS_H_
#define PROCESS_H_
#include "sip003.h"

Loading…
Cancel
Save