mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
39 lines
514 B
C
39 lines
514 B
C
|
|
/*
|
|
* Copyright (C) 2012 by Darren Reed.
|
|
*
|
|
* See the IPFILTER.LICENCE file for details on licencing.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifdef IPFILTER_SCAN
|
|
|
|
#include <ctype.h>
|
|
#include <stdio.h>
|
|
#include "ipf.h"
|
|
#include "netinet/ip_scan.h"
|
|
|
|
void
|
|
printsbuf(char *buf)
|
|
{
|
|
u_char *s;
|
|
int i;
|
|
|
|
for (s = (u_char *)buf, i = ISC_TLEN; i; i--, s++) {
|
|
if (ISPRINT(*s))
|
|
putchar(*s);
|
|
else
|
|
PRINTF("\\%o", *s);
|
|
}
|
|
}
|
|
#else
|
|
void printsbuf(char *buf);
|
|
|
|
void printsbuf(char *buf)
|
|
{
|
|
#if 0
|
|
buf = buf; /* gcc -Wextra */
|
|
#endif
|
|
}
|
|
#endif
|