#ifndef __AF_COMMON_H__ #define __AF_COMMON_H__ #include #include #include #include #include #ifdef AF_SERVER #include #endif #ifdef AF_CLIENT #include #endif #define AF_DEFAULT_PORT 5312 #define AF_VERSION "0.0.0" #define AF_COPYRIGHT "Copyright (C) 2025 Fishsoup" /* should be broadcasted! otherwise other user wouldn't know */ typedef struct af_pkt_join { unsigned char length; char* name; } af_pkt_join_t; #endif