FreeCalypso > hg > freecalypso-sw
diff rvinterf/lowlevel/logsent.c @ 174:3256dc6e84ae
rvinterf: refactored rvtdump compiles and works
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Fri, 22 Nov 2013 07:41:31 +0000 |
parents | rvinterf/old/log.c@f42854da4563 |
children | 2f285f20d617 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rvinterf/lowlevel/logsent.c Fri Nov 22 07:41:31 2013 +0000 @@ -0,0 +1,27 @@ +/* + * This module implements the logging of sent packets + */ + +#include <sys/types.h> +#include <stdio.h> +#include <string.h> +#include <strings.h> +#include "../limits.h" + +log_sent_packet(pkt, pktlen) + u_char *pkt; +{ + char buf[MAX_PKT_TO_TARGET*3+5]; + int i; + char *dp; + + dp = buf; + strcpy(dp, "Sent"); + dp += 4; + for (i = 0; i < pktlen; i++) { + sprintf(dp, " %02X", pkt[i]); + dp += 3; + } + *dp = '\0'; + output_line(buf); +}