aboutsummaryrefslogtreecommitdiffstats
path: root/epan/libwireshark.def
AgeCommit message (Collapse)AuthorFilesLines
2010-11-14Add proto_item_append_string() to exported functions per:Stephen Fisher1-0/+1
http://www.wireshark.org/lists/wireshark-dev/201011/msg00153.html svn path=/trunk/; revision=34867
2010-11-08Use value_string_ext fcns to access certain value_string arrays;Bill Meier1-1/+1
Sort a few value_string arrays to be in ascending order by value; Do minor reformatting and whitespace cleanup. svn path=/trunk/; revision=34813
2010-11-08Use value_string_ext for RTP payload types.Anders Broman1-2/+2
svn path=/trunk/; revision=34804
2010-11-05Use value_string_ext fcns to access certain value_string arrays;Bill Meier1-5/+4
Sort certain value_string arrays so the values are in ascending order; Use val_to_str_ext() instead of for loops to do value_string array lookups (voip_calls.c). Minor whitespace cleanup. svn path=/trunk/; revision=34794
2010-11-03Use value_string_ext fcns to access certain value_string arrays;Bill Meier1-2/+2
Some whitespace cleanup. svn path=/trunk/; revision=34763
2010-10-29Use value_string_ext fcns to access certain value_string arrays.Bill Meier1-4/+4
svn path=/trunk/; revision=34692
2010-10-27Added two new functions: nstime_diff() and nstime_subtract().Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=34660
2010-10-22From CaL Turney:Anders Broman1-0/+2
Add support for well-known SIDs/RIDs and option to display in hex. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5286 svn path=/trunk/; revision=34613
2010-10-14Rework "extended value strings":Bill Meier1-1/+1
- Allow direct access when a range of values begins with a value other than 0; - Provide value_string_ext_new() for creating extended value strings at runtime; - Do access to value_string_ext members via a macro (all but value_string.c); - Update documentation. svn path=/trunk/; revision=34514
2010-10-12Rename g_resolv_flags --> gbl_resolv_flags; Also: cleanup some whitespace & ↵Bill Meier1-1/+1
indentation. svn path=/trunk/; revision=34487
2010-10-10Rename vals_status & vals_pdu_type to wsp_vals_status & wsp_vals_pdu_typeBill Meier1-2/+2
svn path=/trunk/; revision=34463
2010-10-09Added "Edit Column Details" functions to the packet list heading popup.Stig Bjørlykke1-0/+4
Removed "Rename Column Title" as this is moved to "Edit Column Details". svn path=/trunk/; revision=34444
2010-10-01Export is_default_profile().Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=34314
2010-09-22Make buildbot happy again...Sake Blok1-0/+1
svn path=/trunk/; revision=34189
2010-09-17Use val_to_str_ext() & friends to access sminmpec_values[];Bill Meier1-1/+3
Also: packet-nhrp.c: #include sminmpec.h not req'd; svn path=/trunk/; revision=34143
2010-09-15Bug #5127 from Guenter Strubreiter:Stephen Fisher1-0/+1
for avoiding doubled definition of a table needed also by a tcap subdissector plugin a definition in libwirshark.def is needed: isup_calling_partys_category_value Me: Change extern to WS_VAR_IMPORT in header file svn path=/trunk/; revision=34126
2010-09-14Remove duplicate register_all_protocol_handoffs entryStephen Fisher1-1/+0
svn path=/trunk/; revision=34117
2010-09-14Bug #5211 from Guenter Strubreiter:Stephen Fisher1-0/+12
for writing a TCAP subdissector as a plugin some functions are needed in libwireshark.def for export svn path=/trunk/; revision=34116
2010-08-14Added proto_item_prepend_text().Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=33800
2010-08-10From Cal Turney:Anders Broman1-0/+1
Remember folder of capture selected from Welcome screen file dialog. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5038 svn path=/trunk/; revision=33758
2010-07-15Move the code to get version information for libraries used byGuy Harris1-0/+2
libwireshark into libwireshark, and call it only in programs linked with libwireshark. That way, programs that don't link with libwireshark don't have to link with libgcrypt or libgnutls solely so that they can say that they're linked with a particular version of libgcrypt or libgnutls. Don't link dumpcap with libgcrypt or libgnutls any more. svn path=/trunk/; revision=33531
2010-06-25Added get_column_resolved and set_column_resolved.Stig Bjørlykke1-0/+2
svn path=/trunk/; revision=33318
2010-06-20Add get_column_visible & set_column_visibleBill Meier1-0/+2
svn path=/trunk/; revision=33268
2010-06-16Export smb_fid_types.Guy Harris1-1/+2
svn path=/trunk/; revision=33234
2010-06-09Add dissector_table_foreach.Anders Broman1-0/+1
svn path=/trunk/; revision=33201
2010-06-01From Kovarththanan Rajaratnam via bug 3500:Gerald Combs1-0/+1
Sébastien's initial commit [1] didn't contain support for embedding Python on Windows. [1] http://anonsvn.wireshark.org/viewvc?view=rev&revision=28529 From me: Comment out PYTHON_EMBED for now. Start a list of known Python+CRT versions. Add get_wspython_dir to libwireshark.def. svn path=/trunk/; revision=33036
2010-05-27Add string_replace to exported functions.Anders Broman1-0/+1
svn path=/trunk/; revision=32996
2010-05-26Export value_string_ext related functionsTomas Kukosa1-0/+3
svn path=/trunk/; revision=32971
2010-05-25Remove find_val_for_stringJeff Morriss1-1/+0
svn path=/trunk/; revision=32951
2010-05-15Export prefs_capture_device_monitor_mode().Guy Harris1-0/+1
svn path=/trunk/; revision=32821
2010-05-13As suggested in ↵Jeff Morriss1-0/+1
http://www.wireshark.org/lists/wireshark-dev/200809/msg00075.html (as referenced in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2907 ) and https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3411 : Write a new convenience routine for finding a conversation and, if it is not found, create it. The frame number and addresses are taken from pinfo (as is the common case). Use this function in a bunch of dissectors. svn path=/trunk/; revision=32790
2010-05-06tvbparse_len_left does not seem to exist in tvbparse.cAnders Broman1-1/+0
svn path=/trunk/; revision=32691
2010-05-06Cleanup and export the TVB parser.Jaap Keuter1-0/+23
svn path=/trunk/; revision=32689
2010-05-06Added an option to display seconds as hours, minutes and secondsStig Bjørlykke1-0/+2
in the packet list, on this format: "1h 2m 3.456s". svn path=/trunk/; revision=32683
2010-04-27Export add_ip_name_from_string from epan.Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=32573
2010-03-31Insert the function which analyzes Q.708 ISPCs in libwireshark.defGerasimos Dimitriadis1-0/+1
svn path=/trunk/; revision=32336
2010-03-27Convert tabs to spaces as per the comment in the file.Bill Meier1-13/+13
svn path=/trunk/; revision=32314
2010-03-27Add proto_tree_add_bitmask_text to libwireshark.defAnders Broman1-0/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4621 svn path=/trunk/; revision=32311
2010-03-07Make tap-diameter-avp.c compile on windows.Anders Broman1-0/+1
I hope strtok_s is portable. svn path=/trunk/; revision=32134
2010-03-03Add oids_cleanup and oids_init to libwireshark.def to make it compile.Anders Broman1-0/+2
svn path=/trunk/; revision=32097
2010-02-28Sort the geoip_db_ routines, add geoip_db_type(), remove extraGuy Harris1-2/+2
geoip_db_get_paths(). svn path=/trunk/; revision=32056
2010-02-07Forgot that etype_vals is DATA.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=31811
2010-02-07Export etype_vals from libwireshark.Stig Bjørlykke1-2/+3
Moved some elements alphabetical. This fixes request in bug 4468. svn path=/trunk/; revision=31810
2010-02-01Fix for Bug 3116Gerasimos Dimitriadis1-0/+1
wrong decoding IMSI with GSM MAP protocol svn path=/trunk/; revision=31764
2010-01-25From Jakub Zawadzki:Gerasimos Dimitriadis1-0/+1
Remove prepare_bits_string from proto.c; Use equivalent function decode_bits_in_field in to_str.c svn path=/trunk/; revision=31665
2010-01-25Change the prefix of the underscore escaping/unescapingGerasimos Dimitriadis1-0/+2
functions from g_ to ws_; Insert function names in libwireshark.def svn path=/trunk/; revision=31662
2010-01-25Export the dissect_mscldap_string() that is used to dissectRonnie Sahlberg1-0/+1
compressed dns strings. svn path=/trunk/; revision=31650
2009-12-21Add profile_store_persconffiles.Gerald Combs1-0/+1
svn path=/trunk/; revision=31338
2009-12-21Export copy_persconffile_profile.Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=31336
2009-12-11From Richard Pecl:Jaap Keuter1-0/+1
Adding prefs_register_protocol_subtree to libwireshark.def svn path=/trunk/; revision=31246