rep/rep.h
2024-07-09 13:56:00 +01:00

19 lines
283 B
C

#ifndef REP_H_
#define REP_H_
#define V12_PORT 9977
#define RNS_PORT 7777
#define BUFFER_SIZE 1024
#define DNS_SERVER_ADDR "127.0.0.1"
typedef struct record {
char *domain;
char *ip;
} record;
record records[] = {
{"nky.xyz", "127.0.0.1"},
{NULL, NULL}
};
#endif