1 2 3 4 5
#include <arpa/inet.h> #include <endian.h> #include <stdint.h> uint32_t ntohl(uint32_t nl) { return htonl(nl); }