#define PORT 2345 #define CHALLENGE 0 #define CORRECT 1 #define WRONG 2 struct recv { int flag; int b[4]; char nextpass[10]; }; typedef struct recv t_recv; struct send { int answer; char prevpass[10]; }; typedef struct send t_send;