aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-08-07mate_grammar.lemon:jmayer5-5/+12
- Fix a bug my previous patch introduced. mate/: - Unset G_DISABLE_DEPRECATED for the mate files. CMakeLists.txt configure.in: - Build with -DG_DISABLE_DEPRECATED so further usage of deprecated glib functions will be detected. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38393 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-07Replace deprecated glib functions.jmayer5-11/+13
In order to compile the whole project with -DG_DISABLE_DEPRECATED the mate plugin needs to replace its usage of GMemChunk. All other places should be clean. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38392 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-07Remove some unused 'GMemChunk *' variables and se_alloc() to same.wmeier1-5/+1
(Found by using -DG_DISABLE_DEPRECATED when compiling dissectors). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38390 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-07Use "%" G_GINT64_MODIFIER "u" instead of G_GINT64_MODIFIER "%u".tuexen1-4/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38388 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-07Life duration is a variable length TLV, and not always a 2 byte value. ↵cmaynard1-23/+103
Hopefully fixes bug 6206 (no relevant capture file available to test). Reference: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6206 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38387 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-07Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warnings.wmeier1-36/+30
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38386 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-07Expand summary column. Fixed bug 6209.cmaynard1-3/+7
Reference: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6209 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38385 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-07[Automatic manuf, services and enterprise-numbers update for 2011-08-07]gerald3-84/+635
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38384 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-07If you have a loop that iterates over packet contents, you absolutelyguy1-6/+19
must not just do a "continue" if the offset into the packet has not been advanced, as you will get an infinite loop if you do. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38383 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-06Get rid of HAVE_PCAP_SET_BUFFER_SIZE - nobody checks forguy1-3/+0
pcap_set_buffer_size() (if *pcap has pcap_create() it has pcap_set_buffer_size(), as they were both introduced in libpcap 1.0.0), and nobody looks at HAVE_PCAP_SET_BUFFER_SIZE. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38382 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-06Set svn:keywords and svn:eol-style. Fix the EOL style.guy1-54/+77
Add the copyright comment and give it an SVN ID. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38381 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-06Move the *pcap stuff together. Add an item forguy1-4/+7
HAVE_PCAP_GET_SELECTABLE_FD to make it clear that it is never defined on Windows. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38380 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-06- Resolve a GTK_CHECK_VERSION(2,6,0) check. It's always true.jmayer1-10/+6
- Fix defined but not used warnings (turned errors) by surrounding the code with HAVE_PCAP_REMOTE_NEVERTRUE. Let's see what breaks. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38379 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-06Update cavebear link.cmaynard1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38378 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-06Some whitespace cleanups.tuexen1-49/+48
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38377 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-06Take out unused functions as reported by Joerg.tuexen1-0/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38376 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-06This should fix the "else without previous if" error reported by Joerg.tuexen1-8/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38375 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-06Whitespace fixes:jmayer1-49/+49
- Remove trailing whitespace - Remove leading space then tab git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38374 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Set the activate signal for the capture filter to the ok button.stig1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38373 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05FindGTK2: Add a check for pangocairo. It has to be linked explicitly, atgerald2-6/+8
least for MacPorts. FindPCAP: Define HAVE_PCAP_CREATE if we have pcap_create. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38372 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05From John Thacker via bug 1831: Export proto_tree_set_appendix.cmaynard1-0/+1
Reference: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1831 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38371 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Try to make the clang buildbot happy...tuexen1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38370 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Use the fix from Joerg to get the airpcap icon also for remotetuexen1-0/+2
interface. This is a misuse of the icon, but we don't have an icon for remote interfaces yet and I'm the wrong one for creating one... git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38369 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Fix the compile issue reported by Joerg.tuexen1-50/+50
This does not fix the icon issue. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38368 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Try to make the Mac OS X PPC builder happy.tuexen1-4/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38367 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Make buildbot OSX-10.5-x86 happy:jmayer1-2/+2
Work around a spurius warning where gcc was unable to find out that two variables would only be used initialized. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38366 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Show in info line if predefined contents lines are truncated.martinm1-2/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38365 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Update pflog dissector via ↵alagoutte3-224/+300
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6115 * Update pflog dissector to the last header format (OpenBSD 4.9) * Dissect all new field (uid, pid, saddr, daddr...) * Replace proto_tree_add_xxx(uint/string...) by proto_tree_add_item * Remove not needed packet-pflog.h file git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38364 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Fix one instance of strdup() -> g_strdup().tuexen1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38363 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Try to make the Mac OS PPC builder happy.tuexen1-1/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38362 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Add call to FindPackageHandleStandardArgsjmayer1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38361 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Attempt to properly fix the missing path information for glib librariesjmayer2-107/+113
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38360 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05We can always add ${GTHREAD2_LIBRARIES} - this variable will be emptyjmayer1-3/+1
if not building with the gthread library. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38359 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Fix typojmayer1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38358 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Using gtk_tree_view_column_get_cell_renderers is an error now.jmayer1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38357 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Replace the deprecated call to gtk_tree_view_column_get_cell_renderers byjmayer2-5/+1
gtk_cell_layout_get_cells, which is available since 2.12 (according to docs) and not 2.18 as one guard indicated. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38356 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Fix API issues.tuexen1-10/+10
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38355 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Fix the Mac OS buildbot.tuexen1-3/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38354 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Whitespace changes.tuexen1-19/+19
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38353 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Fix Windows build.tuexen1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38352 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Simplification suggested by Guy.tuexen1-3/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38351 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Add support for multiple interfaces to the capture options dialog.tuexen11-1182/+2216
Obtained from Irene Ruengeler. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38350 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Generate the capure sync pipe correctly.tuexen1-15/+37
Fix obtained from Irene Ruengeler. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38349 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05From Lei Chen:etxrab1-3/+995
patch to support gsm rr decoding of Immediate Assignment rest octet https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6119 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38348 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Typoetxrab1-2/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38347 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Free the PangoLayout.etxrab3-0/+10
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38346 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-05Use GLIB2_LDFLAGS instead of GLIB2_LIBRARIES for wsutil, since itgerald2-1/+7
includes the path to the libraries. Add gthread to wireshark_LIBS if threads are enabled. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38345 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-04Replace almost all uses of GtkObject (which no longer existsjmayer10-15/+15
in GTK3) by GObject (which does). These were the trivial cases, the two remaining uses in packet_win.c are left for someone who understands the code. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38344 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-04Remove usage of GDK_DRAWABLE macro.jmayer1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38343 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-04The macros GDK_DRAWABLE, GDK_IS_DRAWABLE, GTK_OBJECT are no longerjmayer1-0/+5
present and can probably just be removed without any ill effects or, if there are problems, these should be solvable by using casts. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38342 f5534014-38df-0310-8fa8-9805f1628bb7