1 2 3 4 5 6 7
#include <arpa/inet.h> #include <endian.h> #include <stdint.h> uint16_t ntohs(uint16_t nl) { return htons(nl); }