Allow dissectors of ONC RPC-based protocols to register themselves
[metze/wireshark/wip.git] / file.c
2000-11-21 Guy HarrisAdd a "color.h" file that declares a nominally-toolkit...
2000-11-19 Guy HarrisFor each column, have both a buffer into which strings...
2000-10-20 Gilbert RamirezRemove #include "gtk/colors.h" from file.h, which keep...
2000-10-06 Gilbert RamirezImplement epan_dissect_new() and epan_dissect_free...
2000-09-27 Gilbert RamirezFirst step in moving core Ethereal routines to libepan.
2000-09-17 Guy HarrisThe correct way to check for an error (rather than...
2000-09-12 Guy HarrisIt's "GSList", not "GSlist".
2000-09-12 Guy HarrisAlso free the GSLists for per-frame data on frames...
2000-09-11 Richard SharpeFix the problem with resetting per-frame state info...
2000-09-11 Richard SharpeWe have to free up the per-frame data when we rescan...
2000-09-10 Guy HarrisCompute and display negative relative and delta time...
2000-09-09 Guy Harris"redraw_hex_dump()" can't use "cfile.pd" or "cfile...
2000-09-08 Guy HarrisRedraw:
2000-09-08 Guy HarrisGraham Bloice's patch to support inverse video rather...
2000-09-07 Gilbert RamirezChange wtap_read() API so that the data offset is set...
2000-08-24 Guy HarrisIf we've thrown away saved state before a rescan of...
2000-08-24 Guy HarrisActually, we do have to clear all the dissector informa...
2000-08-24 Guy HarrisInstead of keeping in the information about an RPC...
2000-08-21 Laurent DenielAdd prefs.gui_marked_[fb]g color preferences for the
2000-08-21 Laurent DenielFrames in the packet list can now be marked by the...
2000-08-19 Laurent DenielFix potential buffer overflows.
2000-08-15 Laurent DenielOups. Forgot some set_menus_for_selected_tree_row calls.
2000-08-11 Laurent DenielMiscellaneous code cleaning
2000-08-09 Gilbert RamirezMake copy_binary_file() static since follow_dlg.c no...
2000-08-03 Gilbert RamirezAdd a "Save As" feature to the TCP Follow dialogue...
2000-08-03 Gilbert RamirezReplace calls to sprintf() with snprintf() in file_...
2000-07-26 Gilbert RamirezWhen rescanning a file, all state information for the...
2000-07-20 Guy HarrisIn Tethereal:
2000-07-20 Guy HarrisUse ESD_TYPE_CRIT for most errors (the model used by...
2000-07-09 Guy HarrisPut up a progress dialog when changing the time display...
2000-07-09 Guy HarrisTurn the code of "colorize_packet()" into a static...
2000-07-07 Guy HarrisIf the progress dialog gets a "delete" event, have...
2000-07-07 Guy HarrisUse "progdlg_t *" rather than "void *" as the handle...
2000-07-03 Guy HarrisIf the user clicks the "Cancel" button in a progress...
2000-07-03 Guy HarrisRemove the progress bar from the status line, and,...
2000-06-27 Guy HarrisDon't pass a pointer to the packet data buffer to ...
2000-06-27 Guy HarrisAdd routines to Wiretap to allow a client of Wiretap...
2000-06-27 Guy HarrisPatch from Ben Fowler to rename the global variable...
2000-05-19 Gilbert RamirezAdd wtap-int.h. Move definitions relevant to the intern...
2000-05-18 Guy HarrisRemove the "union pseudo_header" from the "frame_data...
2000-05-18 Guy HarrisHave "proto_tree_is_visible" false except when we're...
2000-05-15 Guy HarrisWe can't trust "cf->current_frame" to refer to the...
2000-05-12 Gilbert RamirezBen Fowler <wapdev@leedsnet.com>'s "usage of fd" patch.
2000-05-06 Guy HarrisFix indentation so that it looks correct if tabs are...
2000-04-14 Gilbert RamirezChange dfilter_apply() to 4-argument function. 4th...
2000-04-13 Gilbert RamirezConsolidate flags in struct frame_data, and add "visite...
2000-04-07 Guy HarrisWhen searching for a frame that matches a filter expres...
2000-04-07 Guy HarrisPlug a memory leak in the "Find Frame" code - we weren...
2000-04-06 Guy HarrisAfter destroying the mem chunk for the packet list...
2000-04-04 Guy HarrisAllocate the new mem chunk for the capture in "open_cap...
2000-04-03 Gilbert RamirezSet cf->plist_chunk in the other place where needed...
2000-04-03 Guy HarrisNote that it didn't seem to save a significant amount...
2000-04-03 Guy HarrisUse a GMemChunk for allocating and freeing "frame_data...
2000-03-31 Olivier AbadAdd a counter : "enabled_plugins_number", to record...
2000-03-28 Guy HarrisPatches from Andreas Sikkema:
2000-03-26 Richard SharpeSet the per frame data pointer to NULL when a new frame...
2000-03-20 Guy HarrisIn "add_packet_to_packet_list()", always use the "buf...
2000-03-12 Guy HarrisMaking the "frame_data" structure for a frame the data...
2000-03-08 Guy HarrisWe already set the foreground and background color...
2000-02-29 Guy HarrisJeff Foster's changes, with my additions, to allow...
2000-02-21 Guy HarrisDon't use a fixed-size line buffer for summary lines...
2000-02-19 Olivier AbadUsed register_init_routine() to register "reinit_x25_ha...
2000-02-19 Guy HarrisUse WTAP_ERR_UNSUPPORTED_ENCAP for all attempts to...
2000-02-18 Olivier AbadRenamed init_dissect_x25() to reinit_x25_hashtable...
2000-02-14 Guy HarrisGet rid of redundant include of <stdio.h> - one is...
2000-02-03 Guy HarrisChange from Ed Meaney - when doing a "Save" or "Save...
2000-01-27 Gilbert RamirezIf a file is opened, and then closed, the File|Open...
2000-01-25 Gilbert RamirezAdd O_BINARY flag to open() for win32.
2000-01-25 Guy HarrisEncapsulate the code to take a pointer to a pathname...
2000-01-25 Guy Harris"If there aren't any packets to select" means "if there...
2000-01-25 Guy HarrisIf there aren't any packets to select, don't try to...
2000-01-25 Guy HarrisOn Win32, when splitting file names into directory...
2000-01-24 Guy HarrisOpen files with "rb" rather than "r" - this may fix...
2000-01-18 Guy HarrisJerry Talkington's changes to support, in the packet...
2000-01-15 Gilbert RamirezMerge in the final code to make Ethereal run on Win32...
2000-01-13 Guy HarrisAssign a frame number to a frame only when reading...
2000-01-10 Guy HarrisMove the code in "column.c" that implements the column...
2000-01-08 Guy HarrisDon't recompute "cf->count" when filtering packets...
2000-01-06 Guy HarrisPrinting multiple pages of PostScript wasn't as tricky...
2000-01-05 Guy HarrisWhen we select the row for the frame found by "Find...
2000-01-03 Guy HarrisBefore adding a frame to the list of displayed frames...
2000-01-03 Guy HarrisTake the "simple_dialog()" stuff out of "ui_util.h...
2000-01-03 Guy HarrisHave "gtk/menu.c" (and, in the future, code for other...
2000-01-03 Guy HarrisFix a nasty side-effect of running the packet list in
1999-12-29 Gilbert RamirezChanged the protocol tree widget from a GtkTree to...
1999-12-29 Guy HarrisMove the stuff to fill in those columns not filled...
1999-12-19 Guy HarrisDon't keep the CList of color filters around; create...
1999-12-19 Guy HarrisMake the color filter list global, and have the code...
1999-12-15 Gilbert RamirezOops. My last commit was made form the wrong tree and...
1999-12-15 Gilbert RamirezAdd Dearborn Group Technology's Gryphon dissector as...
1999-12-12 Olivier AbadCopy the pseudo_header from frame_data to the wtap_pkth...
1999-12-09 Olivier Abadplugins support (i.e. Dynamically loadable dissectors)
1999-12-09 Guy HarrisMove the GTK+ implementations of various UI utilities...
1999-12-04 Guy HarrisTo find out the file's packet encapsulation type (which...
1999-12-04 Guy HarrisNow that "wtap_file_type_string()" takes a file type...
1999-12-04 Guy HarrisMore infrastructure changes for Ethereal - make
1999-12-04 Guy HarrisWhen doing a live display of a live capture, don't...
1999-12-01 Gilbert RamirezAdded Florian Lohoff's <flo@rfc822.org> patch to enable...
1999-11-30 Guy HarrisThere's no need to put a "Could not save to" message...
1999-11-30 Guy HarrisAllow the user to save either all of the current captur...
next