⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configh.in

📁 该程序类似于tcpdump软件
💻 IN
字号:
/* We need this to define the types below, if necessary */
#include <sys/types.h> 

/* We need this for ntohs() and ntohl() below */
#include <netinet/in.h>

/* Define the following if we have the corresponding header */
#undef  CPU_VENDOR_OS
#undef  WORDS_BIGENDIAN
#undef  HAVE_STRERROR
#undef  HAVE_SETLINEBUF
#undef  HAVE_GETOPT_H
#undef  DEBUG

/* Define the following to the appropriate datatype, if necessary */
#undef  int8_t                  /* <sys/types.h> */
#undef  int16_t                 /* <sys/types.h> */
#undef  int32_t                 /* <sys/types.h> */
#undef  u_int8_t                 /* <sys/types.h> */
#undef  u_int16_t                /* <sys/types.h> */
#undef  u_int32_t                /* <sys/types.h> */

#define EXTRACT_16BITS(p) ((u_int16_t) ntohs (*(u_int16_t *)(p)))
#define EXTRACT_32BITS(p) ((u_int32_t) ntohl (*(u_int32_t *)(p)))

/* Global include files */
#include "parse_cl.h"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -