/* * netsniff-ng - the packet sniffing beast * Copyright 2009, 2010 Daniel Borkmann. * Subject to the GPL, version 2. */ #include <stdio.h> #include <stdint.h> #include <ctype.h> #include "proto.h" #include "protos.h" #include "pkt_buff.h" void empty(struct pkt_buff *pkt __maybe_unused) {} void _hex(uint8_t *ptr, size_t len) { if (!len) return; tprintf(" [ Hex "); for (; ptr && len-- > 0; ptr++) tprintf(" %.2x", *ptr); tprintf(" ]\n"); } void hex(struct pkt_buff *pkt) { size_t len = pkt_len(pkt); if (!len) return; _hex(pkt_pull(pkt, len), len); tprintf("\n"); } void _ascii(uint8_t *ptr, size_t len) { if (!len) return; tprintf(" [ Chr "); for (; ptr && len-- > 0; ptr++) tprintf("%c", isprint(*ptr) ? *ptr : '.'); tprintf(" ]\n"); } void ascii(struct pkt_buff *pkt) { size_t len = pkt_len(pkt); if (!len) return; _ascii(pkt_pull(pkt, len), len); tprintf("\n"); } void hex_ascii(struct pkt_buff *pkt) { size_t len = pkt_len(pkt); uint8_t *ptr = pkt_pull(pkt, len); if (len) { _ascii(ptr, len); _hex(ptr, len); } tprintf("\n"); } static void none_less(struct pkt_buff *pkt __maybe_unused) { tprintf("\n"); } struct protocol none_ops = { .key = 0x01, .print_full = hex_ascii, .print_less = none_less, }; x-pump-back</option> </select> <input type='submit' value='switch'/></form></td></tr> <tr><td class='sub'>net-next plumbings</td><td class='sub right'>Tobias Klauser</td></tr></table> <table class='tabs'><tr><td> <a href='/cgit.cgi/linux/net-next.git/'>summary</a><a href='/cgit.cgi/linux/net-next.git/refs/?id=4b4114775143db27371cc4da500ea44e7601955f'>refs</a><a class='active' href='/cgit.cgi/linux/net-next.git/log/net/ipv6/esp6.c'>log</a><a href='/cgit.cgi/linux/net-next.git/tree/net/ipv6/esp6.c?id=4b4114775143db27371cc4da500ea44e7601955f'>tree</a><a href='/cgit.cgi/linux/net-next.git/commit/net/ipv6/esp6.c?id=4b4114775143db27371cc4da500ea44e7601955f'>commit</a><a href='/cgit.cgi/linux/net-next.git/diff/net/ipv6/esp6.c?id=4b4114775143db27371cc4da500ea44e7601955f'>diff</a></td><td class='form'><form class='right' method='get' action='/cgit.cgi/linux/net-next.git/log/net/ipv6/esp6.c'> <input type='hidden' name='id' value='4b4114775143db27371cc4da500ea44e7601955f'/><select name='qt'> <option value='grep'>log msg</option> <option value='author'>author</option> <option value='committer'>committer</option> <option value='range'>range</option> </select> <input class='txt' type='search' size='10' name='q' value=''/> <input type='submit' value='search'/> </form> </td></tr></table> <div class='path'>path: <a href='/cgit.cgi/linux/net-next.git/log/?id=4b4114775143db27371cc4da500ea44e7601955f'>root</a>/<a href='/cgit.cgi/linux/net-next.git/log/net?id=4b4114775143db27371cc4da500ea44e7601955f'>net</a>/<a href='/cgit.cgi/linux/net-next.git/log/net/ipv6?id=4b4114775143db27371cc4da500ea44e7601955f'>ipv6</a>/<a href='/cgit.cgi/linux/net-next.git/log/net/ipv6/esp6.c?id=4b4114775143db27371cc4da500ea44e7601955f'>esp6.c</a></div><div class='content'><table class='list nowrap'><tr class='nohover'><th class='left'>Age</th><th class='left'>Commit message (<a href='/cgit.cgi/linux/net-next.git/log/net/ipv6/esp6.c?id=4b4114775143db27371cc4da500ea44e7601955f&showmsg=1'>Expand</a>)</th><th class='left'>Author</th><th class='left'>Files</th><th class='left'>Lines</th></tr>