aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2006-02-19Recent checkins lost a change to make the liblualib check succeed onJörg Mayer1-0/+5
Suse 9.3 (original checkin r17198). svn path=/trunk/; revision=17353
2006-02-19Remove c++ style comment.Anders Broman2-52/+52
svn path=/trunk/; revision=17352
2006-02-19Fix for bug 752:Jaap Keuter1-5/+5
IEEE802.3ah-2004 (OAM) Errored Frame Seconds Summary Event TLV is not being decoded properly. Per IEEE802.3ah-2004 section 57.5.3.4, item g, the Error Running Total field should be 4-octets however Ethereal is trying to decode this field as 8-octets which results in incorrect value reported for "Error Running Total" and "Event Running Total". svn path=/trunk/; revision=17351
2006-02-18From Florent.Drouin@alcatel.frAnders Broman3-49/+155
Add the same workaround used in packet-ftam.c for the bad handling of the asn "IMPLICIT SEQUENCE", in the packet-gsm_map-template.c. This patch concerns Map V3 messages, not correctly decoded with the previous workaround "offset=offset+2". Change a parameter for Provide Roaming Number decoding. Add a decoding fonction for "Channel needed" parameter to avoid a decoding error for Paging messages with a change to actually dissct channel needed. svn path=/trunk/; revision=17350
2006-02-18rename plugin.c to lua_plugin.cLuis Ontanon2-1/+1
svn path=/trunk/; revision=17348
2006-02-18Add dual versionLuis Ontanon1-1/+9
svn path=/trunk/; revision=17347
2006-02-18Prepare for lua 5.1Luis Ontanon2-32/+51
svn path=/trunk/; revision=17346
2006-02-18add a missing dependency to ethereal.rcUlf Lamping1-1/+1
svn path=/trunk/; revision=17345
2006-02-18add a link to a message indicating that sizing *is* buggyUlf Lamping1-0/+2
svn path=/trunk/; revision=17344
2006-02-18squelch some compiler warningsUlf Lamping1-3/+3
svn path=/trunk/; revision=17343
2006-02-17preparation for a very simple regression testUlf Lamping1-0/+4
svn path=/trunk/; revision=17342
2006-02-17fix some bugs introduced with command line encapsulationUlf Lamping1-25/+12
svn path=/trunk/; revision=17341
2006-02-17add a log message, if capture start failedUlf Lamping1-0/+1
svn path=/trunk/; revision=17340
2006-02-17More duplicate code removal.Gerald Combs1-9/+2
svn path=/trunk/; revision=17339
2006-02-17Include some header files so that we can get rid of duplicate code andGerald Combs1-23/+12
call various GTK+ routines. svn path=/trunk/; revision=17338
2006-02-17Don't try to fill in last_dn if it doesn't exist. Fixes the current BuildbotGerald Combs2-18/+24
failure. svn path=/trunk/; revision=17337
2006-02-17- Make sure the right globals are set before invoking user tap caallbaccksLuis Ontanon2-6/+9
- Have Dumper.new_for_current() and dumper:dump_current() work. svn path=/trunk/; revision=17336
2006-02-17Translate cause valueAnders Broman1-1/+56
svn path=/trunk/; revision=17335
2006-02-17Dissect the rest of the IE:sAnders Broman2-5/+641
svn path=/trunk/; revision=17334
2006-02-17Paolo Abeni:Jörg Mayer3-9/+19
pinfo->net_src and pinfo->net_dst where used to set up conversation, but this fields are null on eap stream. use pinfo->src and pinfo->dst instead. The patch also enable strict checking in the 'follow ssl stream' dialog. svn path=/trunk/; revision=17333
2006-02-17We now quote args as necessary on Windows when constructing the commandGuy Harris1-19/+5
line, so there's no need to quote them when adding the arguments. svn path=/trunk/; revision=17332
2006-02-17Squelch some compiler warnings.Guy Harris2-45/+43
Fix indentation. svn path=/trunk/; revision=17331
2006-02-17On Windows. quote arguments as necessary before sticking them into theGuy Harris1-3/+81
command line passed to Create_Process(). On UN*X, use "execv()", not "execvp()", as we now construct the absolute pathname of "dumpcap". svn path=/trunk/; revision=17330
2006-02-17- avoid the user been flooded with report_error windows if there's an error ↵Luis Ontanon3-7/+39
in a tap callback - fix args of Dumper:new_for_current - add a semicolon after LUA_CLASS_DECLARE(PseudoHeader,PSEUDOHEADER) that caused an error (Lesson: Even if trivial one should test changes, there's always a typo arround the corner) svn path=/trunk/; revision=17329
2006-02-17- pass the tvb too to tap packet callbacksLuis Ontanon6-2/+361
- Dumper (an interface to Wiretap dumpers) svn path=/trunk/; revision=17328
2006-02-17remove dependencies to pcap.h, so getting an idea what needs to be done by ↵Ulf Lamping23-155/+220
dumpcap in addition to the things already done now various dumpcap related code cleanup: mainly #include's and capture engine related stuff svn path=/trunk/; revision=17327
2006-02-17even if we don't want to close stdout on wtap_dump_close(), we might at ↵Ulf Lamping1-1/+4
least try to flush it svn path=/trunk/; revision=17326
2006-02-17fix a commentUlf Lamping1-0/+1
svn path=/trunk/; revision=17325
2006-02-17we don't need pcap.h here (any longer)Ulf Lamping1-10/+0
svn path=/trunk/; revision=17324
2006-02-16Fix </avp> Missing.Anders Broman1-0/+1
svn path=/trunk/; revision=17323
2006-02-16Add dissection of all Signals and more IE:sAnders Broman4-7738/+12665
svn path=/trunk/; revision=17322
2006-02-16Add a document for creating an Ethereal package.Gerald Combs1-0/+32
svn path=/trunk/; revision=17321
2006-02-16Freeze and thaw the packet list after a merge so that the packet list showsGerald Combs1-0/+2
the correct information. svn path=/trunk/; revision=17320
2006-02-16Move common control initialization to gtk/main.c where it belongs.Gerald Combs2-104/+94
Remove a MessageBox() call used for debugging. Fixup whitespace. svn path=/trunk/; revision=17319
2006-02-16Document the proto_tree_add_XXX_format_value() routines.Guy Harris1-0/+81
svn path=/trunk/; revision=17318
2006-02-16Paolo Abeni:Jörg Mayer2-3/+7
The attached patch should fix bug 742. The issue is (at least, I think so...) in the packet-x509af dissector A null pointer is passes as parameter of a " %s " format string. svn path=/trunk/; revision=17317
2006-02-16Use the new "proto_tree_add_*_format_value" routines.Guy Harris18-175/+179
svn path=/trunk/; revision=17316
2006-02-16Have Field extractors being defined while reading the body of the script ↵Luis Ontanon2-49/+68
instead that during initialization. Change their semantics too: ip_src_f = Field("ip.src") function tap.packet(pinfo) ip_src = ip_src() end svn path=/trunk/; revision=17315
2006-02-15Jerry Talkington:Jörg Mayer1-1/+1
Here's a tiny patch that will allow for dissecting of chunked coded HTTP responses when there is an extension or trailing whitespace in the Transfer-Encoding: header. svn path=/trunk/; revision=17314
2006-02-15Update a comment.Guy Harris1-3/+9
svn path=/trunk/; revision=17313
2006-02-15Add getopt.obj to the list of object files with which dumpcap is linked;Guy Harris1-2/+2
it's necessary on Windows (but not on most UN*Xes, so getopt.c shouldn't be part of dumpcap_SOURCES). svn path=/trunk/; revision=17312
2006-02-15Check for getopt in the configure script, as we do for other routinesGuy Harris3-7/+18
not available on all platforms. Include getopt.c in EXTRA_ethereal_SOURCES and include getopt.h in EXTRA_ethereal_INCLUDES, as we do with the other files that supply routines not available on all platforms, rather than always including them in the source for dumpcap. svn path=/trunk/; revision=17311
2006-02-15Fix a typo found by Jean-Baptiste Marchand.Gerald Combs1-1/+1
svn path=/trunk/; revision=17310
2006-02-15Have those functions that end up just calling a win32_ routine if we'reGuy Harris1-34/+29
using GTK+ 2.x on Windows just have the call, nothing else (no extra variables). svn path=/trunk/; revision=17308
2006-02-15Protect The tree and The tvb from being used outside their scopeLuis Ontanon4-2/+19
svn path=/trunk/; revision=17307
2006-02-15- protect proto_items and proto_trees from being used out of their scopeLuis Ontanon2-7/+22
- fix the severity variables svn path=/trunk/; revision=17306
2006-02-15- protect column, columns and pinfo from dereferencing invalid data saved by ↵Luis Ontanon5-42/+62
the user. - columns live for less than a packet's time, use ep_alloc not g_malloc - tvbranges are ephemeral too doc/ is to remain as a placeholder for upcoming docs. lualib/ is to be deleted (if needed it should go in trunk) but it appears that once I added if I do not check it in I cannot delete it. svn path=/trunk/; revision=17305
2006-02-14mgcp-plugin -> plugin-mgcp.Gerald Combs1-1/+1
svn path=/trunk/; revision=17304
2006-02-14Make sure SSL_DEBUG_USE_STDERR is always defined.Gerald Combs2-7/+8
svn path=/trunk/; revision=17303
2006-02-14Split the version under Windows into its major, minor, and microGerald Combs4-7/+13
components. Use them to build the VERSION, RC_VERSION, and manifest versions (the latter two are picky about formatting). This would probably be useful on the autoconf side, but I didn't see an obvious way to implement it. svn path=/trunk/; revision=17302