aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/Makefile.common
AgeCommit message (Collapse)AuthorFilesLines
2013-11-17Move the epan/filesystem.c routines to wsutil; they're not specific toGuy Harris1-0/+2
packet dissection, they're specific to the entire Wireshark suite of programs. svn path=/trunk/; revision=53377
2013-11-16Move bitswap.[ch] from epan to wsutil.Jakub Zawadzki1-0/+2
svn path=/trunk/; revision=53365
2013-11-09Move adler32 from epan/ to wsutil/Jakub Zawadzki1-0/+2
The same like done for crc* svn path=/trunk/; revision=53190
2013-11-09Rename swar_count_bits() to ws_count_ones()Jakub Zawadzki1-2/+1
Try to make ws_count_ones() inline function. svn path=/trunk/; revision=53178
2013-11-08Try to split ws_ctz() from hfinfo_bitshift().Jakub Zawadzki1-0/+1
svn path=/trunk/; revision=53176
2013-10-29Revert part of 52896 and (for now) all of 52935. As Jeff pointed out,Gerald Combs1-2/+4
the PortableApps version relies on U3_-prefixed environment variables. svn path=/trunk/; revision=52941
2013-10-27Remove U3 code and packaging.Gerald Combs1-4/+2
svn path=/trunk/; revision=52896
2013-08-26From Jiri Engelthaler viaEvan Huus1-0/+2
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9055 Add support for bitmask set for signed integer types. svn path=/trunk/; revision=51522
2013-08-02pint.h is in wsutil now.Jeff Morriss1-0/+1
svn path=/trunk/; revision=51107
2013-08-01Move a bunch of the crypt modules and pint.h into wsutil.Jeff Morriss1-0/+14
This means wsutil now links against libcrypt. Protect a bunch of the crypt header files from multiple inclusion. svn path=/trunk/; revision=51100
2013-07-16Move u3.{h,c} and g711.{h,c} into wsutil.Jeff Morriss1-2/+6
Project g711.h against multiple inclusion and add C++ compatibility wrapper. svn path=/trunk/; revision=50654
2013-07-16Move strnatcmp.{h,c} from epan into wsutil: there's nothing epan-specificJeff Morriss1-0/+2
there and moving it avoids having to recompile the file for use in editcap and mergecap (which don't link against libwireshark). svn path=/trunk/; revision=50650
2013-07-15Move report_err.{h,c} from epan into wsutil: there's nothing epan-specific ↵Jeff Morriss1-0/+2
there and moving it avoids having to recompile the file for use in editcap and capinfos (which don't link against libwireshark). svn path=/trunk/; revision=50598
2013-06-26Move tempfile.{h,c} into wsutil.Jeff Morriss1-0/+2
svn path=/trunk/; revision=50163
2013-06-26As pointed out by Guy: timestats uses packet_info so it belongs in epanJeff Morriss1-2/+0
not wsutil. svn path=/trunk/; revision=50159
2013-06-25Move a couple of time-related modules into wsutil.Jeff Morriss1-0/+4
A bunch of files didn't really need to include these header files so remove the include line rather than changing it. svn path=/trunk/; revision=50154
2013-01-15Add some routines to wsutil to, at least on some platforms, addGuy Harris1-0/+2
information to crash dumps and the like. (Currently, we only handle OS X's CrashReporter, but we should do this on other platforms where this information can be added and would be helpful.) White space tweaks. svn path=/trunk/; revision=47104
2012-08-08From Jacob Nordgren and Rishie Sharma:Anders Broman1-0/+2
Add CRC11 algorithms svn path=/trunk/; revision=44346
2012-07-12Add crc7 calculation abillity.Anders Broman1-3/+5
svn path=/trunk/; revision=43680
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2011-11-03From Roland Knall via bug 6539:Stig Bjørlykke1-0/+2
Implementing generic CRC8 and CRC16 functions for openSAFETY in wsutil. svn path=/trunk/; revision=39726
2011-09-12Move airpcap_wep.c to /wsutilAnders Broman1-0/+1
svn path=/trunk/; revision=38969
2011-08-31Second try to move crc routines to libwsutil.Stig Bjørlykke1-0/+12
This time keep the tvb routines in epan. Now we can use common crc routines outside epan. svn path=/trunk/; revision=38810
2011-08-30Revert r38800, as the crc routines contains some tvb functions.Stig Bjørlykke1-14/+0
svn path=/trunk/; revision=38803
2011-08-30Move all crc routines to libwsutil.Stig Bjørlykke1-0/+14
This way we can use the crc routines in wiretap. svn path=/trunk/; revision=38800
2010-05-29Make inet_aton an optional object on *NIX againJeff Morriss1-2/+0
svn path=/trunk/; revision=33016
2010-05-28Move some code (including the optional objects) into libwsutilJeff Morriss1-2/+4
svn path=/trunk/; revision=33012
2008-12-22Move wtap_pcap_encap_to_wtap_encap() and wtap_wtap_encap_to_pcap_encap()Guy Harris1-2/+0
back to libwiretap for now, as it's inherently tied to reading libpcap files; at some point we might want to have pcap-reading (and pcap-ng-reading?) code in a separate library, for use by, for example, dumpcap (and rawshark?). svn path=/trunk/; revision=27076
2008-12-17commit forgotten changed fileTomas Kukosa1-2/+4
svn path=/trunk/; revision=27035
2008-09-19Move wtap_pcap_encap_to_wtap_encap and wtap_wtap_encap_to_pcap_encap toGerald Combs1-0/+2
libwsutil. svn path=/trunk/; revision=26233
2008-09-03g_ascii_strdown() and g_ascii_strup(), unlike g_strdown() and g_strup(),Guy Harris1-2/+4
do *not* modify the string handed to them - they g_mallocate a new string and return it. Create routines that *do* ASCII-only case mapping in place, and use them instead. Clean up indentation. svn path=/trunk/; revision=26131
2008-07-11unicode-utils.c is only for Windows; don't build it on UN*X. Put in a checkJeff Morriss1-4/+2
to cause it to fail when built on UN*X. svn path=/trunk/; revision=25704
2008-06-30Move privileges.c and unicode-utils.c from epan to wsutil (so things likeJeff Morriss1-4/+8
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
2008-05-23file_util.c is only for Windows; don't build it on UN*X. Put in a checkGuy Harris1-2/+0
to cause it to fail when built on UN*X, and get rid of code that's not needed on Windows. svn path=/trunk/; revision=25362
2008-05-23Add a Makefile.common file, and have Makefile.am and Makefile.nmake use it.Guy Harris1-0/+38
svn path=/trunk/; revision=25360