rep/rep.h

20 lines
283 B
C
Raw Normal View History

2024-07-09 14:56:00 +02:00
#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