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

📄 debug.c

📁 该程序类似于tcpdump软件
💻 C
字号:
/**************************************************************************** 
** File: debug.c
**
** Author: Mike Borella
**
** Comments: Routines printing packets in raw form for debugging
**
** $Log: debug.c,v $
** Revision 1.2  1998/06/12 21:00:58  mborella
** Added log tag
**
*****************************************************************************/

#include <stdio.h>
#include <sys/types.h>
#include "config.h"

/*----------------------------------------------------------------------------
**
** dump_ascii()
**
** Print a packet in ascii format
**
**----------------------------------------------------------------------------
*/

void dump_ascii(u_char *p, u_char *ep)
{
  while(p <= ep)
    {
      printf("[%d]", (u_int8_t) *p);
      p++;
    }
}

⌨️ 快捷键说明

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