Displaying 1 result from an estimated 1 matches for "cached_pkt".
Did you mean:
cached_pkts
2012 Oct 03
1
[PATCH] pxedump.c32: Simple PXE cached packet dumping
...y useful with a serial connection
+ */
+
+#include <stddef.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <ctype.h>
+#include <consoles.h>
+#include <syslinux/pxe.h>
+
+#define countof(arr) (sizeof (arr) / sizeof *(arr))
+#define cached_pkt_count 3
+#define ipaddr_str_template "AAA.BBB.CCC.DDD"
+
+struct ipaddr_str;
+struct cached_pkt;
+struct cached_pkts;
+
+static int get_cached_pkts(struct cached_pkts * cached_pkts);
+static int dump_cached_pkts(struct cached_pkts * cached_pkts);
+static void free_cached_pkts(struct cache...