1 #define DEST_HOST 0 2 #define DEST_PORT 4 3 #define SRC_HOST 6 4 #define SRC_PORT 10 5 6 u_int atohost(const char *cp); 7 u_short atoport(const char *cp); 8 void hosttoa(char *cp, u_int host); 9 void porttoa(char *cp, u_short port); 10