Skip to content
Snippets Groups Projects
Commit 29011ea4 authored by Phil's avatar Phil
Browse files

Moved tethereal() to sendrecv.py and renamed it tshark()

parent 200ecb02
No related branches found
No related tags found
No related merge requests found
...@@ -566,4 +566,8 @@ L2socket: use the provided L2socket ...@@ -566,4 +566,8 @@ L2socket: use the provided L2socket
s.close() s.close()
return plist.PacketList(lst,"Sniffed") return plist.PacketList(lst,"Sniffed")
@conf.commands.register
def tshark(*args,**kargs):
"""Sniff packets and print them calling pkt.show(), a bit like text wireshark"""
sniff(prn=lambda x: x.display(),*args,**kargs)
...@@ -804,7 +804,3 @@ def make_lined_table(*args, **kargs): ...@@ -804,7 +804,3 @@ def make_lined_table(*args, **kargs):
def make_tex_table(*args, **kargs): def make_tex_table(*args, **kargs):
__make_table(lambda l: "%s", lambda l: "& %s", "\\\\", seplinefunc=lambda a,x:"\\hline", *args, **kargs) __make_table(lambda l: "%s", lambda l: "& %s", "\\\\", seplinefunc=lambda a,x:"\\hline", *args, **kargs)
def tethereal(*args,**kargs):
sniff(prn=lambda x: x.display(),*args,**kargs)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment