3 # Copyright (c) 2010 Nicira, Inc.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at:
9 # http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
25 %(argv0)s: print "tcpdump -xx" output as hex
26 usage: %(argv0)s < FILE
27 where FILE is output from "tcpdump -xx".
29 The following options are also available:
30 -h, --help display this help message
31 -V, --version display version information\
32 """ % {'argv0': argv0}
35 if __name__ == "__main__":
37 options, args = getopt.gnu_getopt(sys.argv[1:], 'hV',
39 except getopt.GetoptError, geo:
40 sys.stderr.write("%s: %s\n" % (argv0, geo.msg))
43 for key, value in options:
44 if key in ['-h', '--help']:
46 elif key in ['-V', '--version']:
47 print "ovs-pcap (Open vSwitch) @VERSION@"
52 sys.stderr.write("%s: non-option argument not supported "
53 "(use --help for help)\n" % argv0)
57 regex = re.compile(r'^\s+0x([0-9a-fA-F]+): ((?: [0-9a-fA-F]{4})+)')
59 line = sys.stdin.readline()
64 if m is None or int(m.group(1)) == 0:
69 packet += re.sub(r'\s', '', m.group(2), 0)