aboutsummaryrefslogtreecommitdiffstats
path: root/epan/guid-utils.c
AgeCommit message (Collapse)AuthorFilesLines
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-2/+0
svn path=/trunk/; revision=45016
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2009-10-25From Jakub Zawadzki:Anders Broman1-6/+1
Cleanup dissector code - use proper memory functions. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4164 svn path=/trunk/; revision=30691
2009-04-08size_t fixes.Gerald Combs1-1/+1
svn path=/trunk/; revision=27990
2008-12-20Fix some typos and spelling (mostly in text strings)Bill Meier1-1/+1
svn path=/trunk/; revision=27068
2008-06-30Move privileges.c and unicode-utils.c from epan to wsutil (so things likeJeff Morriss1-1/+1
capinfos and dumpcap don't need to depend on libwireshark nor directly pull in those modules). Because capinfos and editcap were only being linked with privileges.c if we had plugins, this allows those programs to be linked when someone is compiling --without-plugins. svn path=/trunk/; revision=25640
2007-03-22fix some more warningsUlf Lamping1-1/+1
svn path=/trunk/; revision=21104
2006-09-22Add support for reading from stdin under Windows. Based on a patch sentGerald Combs1-6/+6
in last year by Gianluca Varenni. Add partial support for reading from named pipes (currently disabled). Move utf_8to16() and utf_16to8() to a separate module (unicode-utils.[ch]) so that we don't have to cut and paste code in dumpcap.c. Fix up whitespace. svn path=/trunk/; revision=19291
2006-08-27squelch some compiler warningsUlf Lamping1-40/+38
svn path=/trunk/; revision=19052
2006-08-19Squelch a compiler warning.Guy Harris1-3/+4
svn path=/trunk/; revision=18956
2006-08-18change the guid mapping code to use a tree isntead of a hashtableRonnie Sahlberg1-101/+124
svn path=/trunk/; revision=18946
2006-08-17some further work on the GUID/UUID resolvingsUlf Lamping1-10/+109
most of the relevant code moved to guid_utils lot of corresponding code cleanup in packet-dcerpc.c still using GHashTable still not using a manuf like file svn path=/trunk/; revision=18939
2006-08-16various UUID/GUID based changes.Ulf Lamping1-0/+88
I think I've changed all corresponding appearances from FT_STRING to FT_GUID, so assert the FT_ type as it should only be a FT_GUID now. Add a generic implementation in guid_utils.h to have a way to store data about GUID to name resolving (something like value_string for e.g. int). It might be better to have a single registry for all GUID's of all dissectors and implement the GUID name resolving into the proto_tree_add... functions. svn path=/trunk/; revision=18935