aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/README.X11
blob: ddef004bb2e4d677a76e36c03425d5ebe80c1e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
The X11 dissector generator is no longer run automatically.

To run the dissector generator, you will need perl 5.10 and the XML::Twig
module from CPAN. You will also need 'git' to retrieve the lastest protocol
descriptions.

Once you have those, you also need the XML protocol descriptions. In the
epan/dissectors directory, run the following commands:
 git clone git://anongit.freedesktop.org/xcb/proto xcbproto
 git clone git://anongit.freedesktop.org/git/mesa/mesa

As of this writing, mesa will provide:
 src/mapi/glapi/gen/gl_API.xml
and xcbproto provides:
 bigreq.xml
 composite.xml
 damage.xml
 dpms.xml
 dri2.xml
 ge.xml
 glx.xml
 randr.xml
 record.xml
 render.xml
 res.xml
 screensaver.xml
 shape.xml
 shm.xml
 sync.xml
 xc_misc.xml
 xevie.xml
 xf86dri.xml
 xf86vidmode.xml
 xfixes.xml
 xinerama.xml
 xinput.xml
 xkb.xml
 xprint.xml
 xproto.xml (ignored)
 xselinux.xml
 xtest.xml
 xv.xml
 xvmc.xml
  
Or, if you have already cloned those repositories, "git pull" each one to bring
it up to date. Please be aware that the Mesa repository is rather large; it is
slightly more than 200MB as of this writing.

Run the following:
 make x11-dissector

This will automatically run process-x11-fields.pl (for the core protocol
definitions), and then it will run process-x11-xcb.pl to process the XML
descriptions from XCB and Mesa to generate the extension dissectors.

Once this is complete, compile wireshark as usual.