Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / doc / man_pages / idl2wrs.adoc
blob605f441a220bd52496c1726efd85bfa590377080
1 include::../attributes.adoc[]
2 = idl2wrs(1)
3 :doctype: manpage
4 :stylesheet: ws.css
5 :linkcss:
6 :copycss: {css_dir}/{stylesheet}
8 == NAME
10 idl2wrs - CORBA IDL to Wireshark Plugin Generator
12 == SYNOPSIS
14 *idl2wrs* <filename>
16 == DESCRIPTION
18 *idl2wrs* is a program that takes a user specified *CORBA IDL*
19 file and generates *"C"* source code for a *Wireshark* "plugin".
21 This resulting file can be compiled as a *Wireshark* plugin, and
22 used to monitor *GIOP/IIOP* traffic that is using this IDL.
24 *idl2wrs* is actually a shell script wrapper for two *Python* programs.
25 These programs are:
27 * *wireshark_be.py*
28 Contains the main IDL Visitor Class
30 * *wireshark_gen.py*
31 Contains the Source Code Generator Class
33 *idl2wrs* supports heuristic dissection of GIOP/IIOP traffic,
34 and some experimental code for explicit dissection, based on
35 Object Key <-> Repository Id mapping.
36 However, code for heuristic based plugins is
37 generated by default, and users should consider this the preferred
38 method unless you have some namespace collisions.
40 == OPTIONS
42 Currently there are no options. *idl2wrs* can be invoked as follows.
44 1.  To write the C code to stdout.
46     idl2wrs  <your_file.idl>
48     eg: idl2wrs echo.idl
50 2. To write to a file, just redirect the output.
52     idl2wrs echo.idl > packet-test.c
54 == ENVIRONMENT
56 *idl2wrs* will look for *wireshark_be.py* and *wireshark_gen.py* in
57 *$PYTHONPATH/site-packages/* and if not found, will try the current
58 directory *./*
60 The *-p* option passed to omniidl (inside *idl2wrs*) indicates where
61 *wireshark_be.py* and *wireshark_gen.py* will be searched.  This may
62 need tweaking if you place these files somewhere else.
64 If it complains about being unable to find some modules (eg tempfile.py),
65 you may want to check if PYTHONPATH is set correctly.
67 eg:  PYTHONPATH=/usr/lib/python3/
69 == SEE ALSO
71 xref:wireshark.html[wireshark](1), xref:tshark.html[tshark](1)
73 == NOTES
75 *idl2wrs* (including *wireshark_be.py* and *wireshark_gen.py*) are part of
76 the *Wireshark* distribution.  The latest version of *Wireshark* can
77 be found at https://www.wireshark.org.
79 *idl2wrs* uses *omniidl*, an IDL parser, and can be found at
80 http://omniorb.sourceforge.net/
82 == TODO
84 Some of the more important things to do are:
86 * Improve Explicit dissection code.
88 * Improve command line options.
90 * Improve decode algorithm when we have operation name collision.
92 == AUTHORS
94 .Original Author
95 [%hardbreaks]
96 Frank Singleton <frank.singleton[AT]ericsson.com>
98 .Contributors
99 [%hardbreaks]