#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