The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / register.h @ master

History | View | Annotate | Download (2.03 KB)

# Date Author Comment
29659139 03/04/2014 09:27 AM Alexis La Goutte

Remove all $Id$ from top of file

(Using sed : sed -i '/^ \* \$Id\$/,+1 d')

Fix manually some typo (in export_object_dicom.c and crc16-plain.c)

Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8
Reviewed-on: https://code.wireshark.org/review/497
Reviewed-by: Anders Broman <>

1ebdb2e5 03/01/2013 06:53 PM Balint Reczey

Export libwireshark symbols using WS_DLL_PUBLIC define

Also remove old WS_VAR_IMPORT define and related Makefile magic
everywhere in the project.

svn path=/trunk/; revision=47992

bf81b42e 06/28/2012 06:56 PM Jakub Zawadzki

Update Free Software Foundation address.

(COPYING will be updated in next commit)

svn path=/trunk/; revision=43536

6b178bd4 12/28/2011 07:08 PM Gerald Combs

Add 'extern "C"' wrappers and #include guards to various header files.

svn path=/trunk/; revision=40321

64c2355b 10/02/2011 12:19 PM Stig Bjørlykke

Removed the protocol registration updates in the splash screen for Python
dissectors, because it does not work as expected and causes an assert.

Added generic splash updates for python register and handoff instead.

This should fix bug 5431.

svn path=/trunk/; revision=39221

3e75b436 10/02/2011 09:39 AM Stig Bjørlykke

Added register action for loading Lua plugins.
Removed an unused argument to wslua_init().

svn path=/trunk/; revision=39214

944d2e54 05/25/2007 03:13 PM Guy Harris

Squelch some qualifier (const vs. non-const) warnings.

svn path=/trunk/; revision=21938

cf56e76b 05/07/2007 01:55 PM Graeme Lunt

Updated splash screen for Wireshark that shows the initialisation progress.
The splash screen shows a progress bar and a percentage complete - like the progress dialog.
As dissectors are initialised and handed off the name is shown. However, the names of plugin dissectors are not shown....

89f022b1 05/21/2006 01:12 AM Ronnie Sahlberg

name change

svn path=/trunk/; revision=18197

80c1907a 04/01/2005 04:08 AM Guy Harris

Rename "register_ethereal_tap()" to "register_tap_listener_cmd_arg()" as
it's used to register a callback for a tap listener invoked if the
specified command line argument is specified to the "-z" flag.

Move it, along with routines to:

look up a "-z" argument in the table constructed by...
8a8b8834 07/17/2004 08:24 PM Guy Harris

Set the svn:eol-style property on all text files to "native", so that
they have LF at the end of the line on UN*X and CR/LF on Windows;
hopefully this means that if a CR/LF version is checked in on Windows,
the CRs will be stripped so that they show up only when checked out on...

16414f66 05/03/2004 02:51 PM Guy Harris

"register_all_tap_menus()" no longer exists.

svn path=/trunk/; revision=10775

4cfd8b0f 04/22/2003 11:51 PM Guy Harris

Allow taps to have menu item registration routines; the menu item
registration routines, for taps with menu items (taps that can be run
from the "Tools->Statistics" menu), create the menu item for the tap.
"make-tapreg-dotc" constructs a "register_all_tap_menus()" function that...

8442ad9a 10/31/2002 05:16 PM Guy Harris

From Ronnie Sahlberg: have a registration interface for tap listeners,
and generate the table of stuff to register from tap source files, so
Tethereal doesn't need to know what tap listeners exist.

Get rid of "tap-xxx.h" files, as they're now empty.

Add "tethereal-tap-register.c" to the .cvsignore file, as it's a new...

7c4176d8 08/28/2002 05:04 PM Jörg Mayer

Removed trailing whitespaces from .h and .c files using the
winapi_cleanup tool written by Patrik Stridvall for the wine
project.

svn path=/trunk/; revision=6117

1ffa3cfa 04/04/2000 02:17 AM Guy Harris

Make "make-reg-dotc" generate a "register_all_protocol_handoffs()"
routine, which calls all routines found in the dissector source files
with names that match " proto_reg_handoff_[a-z_0-9A-Z]*".

Call "register_all_protocol_handoffs()" after calling
"register_all_protocols()" - "register_all_protocols()" needs to be...

3164c1e3 10/20/1999 02:28 AM Guy Harris

Automatically generate a function to call the register routines for all
protocols (idea shamelessly stolen from GDB). We require that the
register routines

1) be located in "packet.c" or in one of the "packet-XXX.c" 
files;
2) have a name of the form "proto_register_XXX";...