aboutsummaryrefslogtreecommitdiffstats
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2004-05-31Make "-q" suppress packet printing when you're reading a capture fileGuy Harris1-6/+25
and not writing to another capture file, for use with "-z" options. Note that "-z proto" *doesn't* print statistics at the end - it modifies the packet summary output. Note that on at least some BSDs the "status" character is set to "off" by default, so you have to set it explicitly in order to be able to ^T an application such as Tethereal. svn path=/trunk/; revision=11038
2004-05-24Have two strings in an enum_val_t - one that's a short string that isGuy Harris1-16/+31
convenient to put into a command line (no capital letters, no spaces to require quotes), and one that's a detailed description for use in the UI. Allow either of them in the preferences file or "-o" option; use the detailed description in the UI, and also use it when writing the preferences out, so that the preference will be readable by older versions of Ethereal (assuming the preference existed in that version). Update "README.developer" to give more detail about an enum_val_t (and to put the _t in), and to give a more detailed description of the "radio_buttons" argument to "prefs_register_enum_preference()". svn path=/trunk/; revision=10982
2004-05-22Add "ethereal-tmp.pod" to the list of files to ignore.Guy Harris1-0/+1
svn path=/trunk/; revision=10969
2004-05-22"--binary" is not a universal "cat" flag, and shouldn't be necessary onGuy Harris1-2/+2
UN*X and, hopefully, not in Cygwin either. svn path=/trunk/; revision=10968
2004-05-22Use "/" rather than "\" in UN*X pathnames.Guy Harris1-2/+2
svn path=/trunk/; revision=10967
2004-05-22remove (duplicated) list of authors from ethereal.pod,Ulf Lamping3-425/+16
and use ../AUTHORS-SHORT instead to concatenate a tmp file to use svn path=/trunk/; revision=10963
2004-05-22some beautifying andUlf Lamping1-29/+21
bring the links to live, so the html manpage will jump correctly to it's link targets svn path=/trunk/; revision=10959
2004-05-22add a target to build the manpagesUlf Lamping1-1/+4
svn path=/trunk/; revision=10958
2004-05-22update manpage, to reflect recent (and not so recent :-( changes in the GUI,Ulf Lamping1-194/+229
like some things in the menu and Preferences, and fixed some minor bugs which caused undesired formatting. svn path=/trunk/; revision=10957
2004-05-15From James H. Cloos Jr: update the list of audio and video codecs.Guy Harris1-1/+2
Get rid of no-longer-used AST_FORMAT_MP3. svn path=/trunk/; revision=10906
2004-05-12From Dominic B�chaz: IEEE 1588 (Precision Time Protocol) support.Gerald Combs1-0/+1
svn path=/trunk/; revision=10857
2004-05-09From Lars Roland: add support for building a libethereal.dll with MSVC:Guy Harris1-2/+7
add a config.nmake option to control whether to build libethereal.dll or not; remove "./wiretap" from PATH to prevent problems due to wrongly-loaded files; build dissector.lib with MSVC; move "print.c" and "ps.c" to the dissector helpers, as "print.c" imports variables from packet-frame.c and packet-data.c, which are in libethereal; move "g711.c" out of the dissector helpers, as they're used only by Ethereal in a tap, not in Tethereal or in any dissector; add a .def file for libethereal; arrange to declare global variables exported from libethereal with "__declspec(dllimport)" when building programs that import those variables; update the NSIS installer. Make the "configure" script define ETH_VAR_IMPORT as "extern". svn path=/trunk/; revision=10834
2004-05-08From Rich Coe: DICOM support.Guy Harris1-0/+1
svn path=/trunk/; revision=10818
2004-05-07From Thomas Anders:Guy Harris1-1/+1
- support vendor-specific DHCP option 43 interpretation per CableLabs standards (for compliant cable devices, identified by option 60) - support DHCP option 122 with all suboptions (RFC 3495: CableLabs Client Configuration; RFC 3594: PacketCable Security Ticket Control) - update DHCP options list: add options 117-122 (see http://www.iana.org/assignments/bootp-dhcp-parameters) - minor enhancements for DHCP options 2, 82 - minor code cleanup svn path=/trunk/; revision=10809
2004-05-05From Kendy Kutzner: use the tvb_uncompress() routines instead of the ownOlivier Biot1-0/+1
SLSK decompression routine. svn path=/trunk/; revision=10803
2004-05-03The GNOME HIG calls the View menu item for the status bar "Statusbar",Guy Harris1-1/+1
not "Status Bar". svn path=/trunk/; revision=10782
2004-05-03The "View" menu has items to show or hide the three display panes; itGuy Harris1-54/+64
calls the middle pane the "Packet Details" pane, which is perhaps less geeky than "Protocol Tree". Update the man page to call it the "packet details". Update the description of the menu items to more closely reflect current reality. svn path=/trunk/; revision=10781
2004-05-01From Lars Roland: document the SIP statistics.Guy Harris2-0/+41
svn path=/trunk/; revision=10762
2004-04-30updated to reflect the latest changes of exporting PDML in etherealUlf Lamping1-14/+13
svn path=/trunk/; revision=10741
2004-04-28When building the Ethereal documentation on MSVC++/cygwin the cygwin perlOlivier Biot1-2/+4
will not swallow the '\r\n' line end sequence when invoking chomp(), but instead the '\r' character will remain. For this reason, chomp() cannot be used and global removal of '\r' and '\n' characters must be used instead, like in: $_ =~ s/[\r\n]//g; svn path=/trunk/; revision=10719
2004-04-28From Carlos Pignataro:Gerald Combs1-0/+1
Graceful Restart Mechanism for LDP [RFC3478] Fault Tolerance for LDP [RFC3479] Update IANA assigned Status codes Fixed some typos. svn path=/trunk/; revision=10718
2004-04-28From Joe Marcus Clarke: force the standard output to be in binary modeGuy Harris1-0/+1
on Windows. svn path=/trunk/; revision=10717
2004-04-26From Jerry Talkington:Olivier Biot1-1/+1
- Dissect chunked transfer-coded body in HTTP - Update email address svn path=/trunk/; revision=10710
2004-04-25Replace the plugin linkage libs into PLUGIN_LIBS which is generated from theOlivier Biot1-3/+4
top-level configure.in when running configure. svn path=/trunk/; revision=10699
2004-04-25Typo: It's 'item *' not 'item*'Jörg Mayer1-1/+1
svn path=/trunk/; revision=10691
2004-04-25build a list of the input file formats instead of a floating text,Ulf Lamping6-82/+301
added program names to HTML titles, various minor fixes svn path=/trunk/; revision=10686
2004-04-23seperated the input file formats into list elements, instead of a "floating ↵Ulf Lamping1-20/+87
text" svn path=/trunk/; revision=10676
2004-04-20Update Thierry Pelle's address.Gerald Combs1-1/+1
svn path=/trunk/; revision=10650
2004-04-19Update Pasi Eronen's e-mail address.Guy Harris1-1/+1
svn path=/trunk/; revision=10640
2004-04-17From Lukas Pokorny: RTPS (Real-Time Publish-Subscribe) support.Guy Harris1-0/+1
svn path=/trunk/; revision=10630
2004-04-14Add support for plugin dissectors on cygwin builds, by adding the followingOlivier Biot1-1/+2
line to every Makefile.am file for a given plugin XXX: XXX_la_LIBADD = -L../../epan -lethereal @GLIB_LIBS@ This way symbols defined in libethereal and GLib are resolved when linking the plugin dissector modules. svn path=/trunk/; revision=10601
2004-04-13From Clinton Work: dissect Cisco PID 0x010b as STP (it's actually theirGuy Harris1-0/+1
own modified Per-VLAN STP, so there's some extra stuff at the end of the packet that needs to be decoded). Indicate in a comment in packet-cisco-oui.c what PVSTP is. svn path=/trunk/; revision=10589
2004-04-11From Jon Oberheide: add a missing hf[] entry for a field.Guy Harris1-1/+3
Fix up AUTHORS and the authors list in the Ethereal man page. svn path=/trunk/; revision=10581
2004-04-08update doc with better description of SUM/COUNT/MIN/MAX/AVG.Ronnie Sahlberg1-9/+21
svn path=/trunk/; revision=10561
2004-04-06from Thomas Palmer: add a preference setting for filter toolbar placementUlf Lamping1-0/+1
svn path=/trunk/; revision=10555
2004-04-04Love contributed great help to get the heimdal decryption support workingRonnie Sahlberg1-0/+1
(wherein we also discovered an obscure bug inside heimdal itself) Great thanks to Love. svn path=/trunk/; revision=10551
2004-03-25added hint to use g_snprintf instead of snprintf and sprintfUlf Lamping1-4/+15
svn path=/trunk/; revision=10481
2004-03-25From Duncan Sargeant: Cisco SS7 RUDP, RLM, and Session ManagementGuy Harris1-0/+1
support. svn path=/trunk/; revision=10480
2004-03-24Add a description for the bitwise_and (&) operator.Olivier Biot1-0/+23
svn path=/trunk/; revision=10471
2004-03-23From Jelmer Vernooij: split the AIM dissector into multiple files, andGuy Harris1-1/+1
add a few more SNACs. svn path=/trunk/; revision=10450
2004-03-20From Jelmer Vernooij: add support for some more SNACs.Guy Harris1-0/+2
svn path=/trunk/; revision=10414
2004-03-19Update to reflect current reality.Guy Harris1-18/+13
svn path=/trunk/; revision=10408
2004-03-18From Josh Bailey: IPDC support.Guy Harris1-0/+1
svn path=/trunk/; revision=10399
2004-03-17From Brian Wheeler: DOCSIS 2.0 support.Guy Harris1-0/+1
svn path=/trunk/; revision=10387
2004-03-16From metatech: IBM WebSphere MQ protocol support.Guy Harris1-0/+1
svn path=/trunk/; revision=10386
2004-03-13updated texts to reflect the latest GUI changesUlf Lamping1-228/+257
svn path=/trunk/; revision=10376
2004-03-05From Ryuji Somegawa: CDMA2000 A11 support.Guy Harris1-0/+1
svn path=/trunk/; revision=10317
2004-03-05From John Englehart: CDP updates (hello packets, show capabilities theGuy Harris1-1/+2
same way Cisco's "show cdp neighbor" does). svn path=/trunk/; revision=10310
2004-03-03Bill Guyton: mergecap can write to stdout by using the special filename -Jörg Mayer1-2/+3
svn path=/trunk/; revision=10289
2004-03-02Note to self: If you update the code, you should update the docs too.Jörg Mayer1-6/+8
Update README.plugins to use ENABLE_STATIC instead of __ETHEREAL_STATIC__ Update some plugins, that were created after my changes according to the outdated docs. Changed occurrences of G_MODULE_EXPORT void plugin_reg_handoff(void) into G_MODULE_EXPORT void plugin_reg_handoff(void) as the one line Python version doesn't work with the Python of Suse 9.0 svn path=/trunk/; revision=10281