aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua
AgeCommit message (Collapse)AuthorFilesLines
2008-02-22From Balint Reczey via ↵Jeff Morriss1-1/+1
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2264 : fix IPv4 handling svn path=/trunk/; revision=24433
2008-02-21Fix Bug Enable int64, uint64 and ipv4 type fields for the Lua dissectorsAnders Broman1-1/+7
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2264 svn path=/trunk/; revision=24408
2008-02-19Add 'executable' property to a few .pl and .py filesBill Meier1-0/+0
svn path=/trunk/; revision=24390
2008-01-26From Peter (bug 2224):Stig Bjørlykke1-0/+3
Patch to fix compile with glib-1.2. svn path=/trunk/; revision=24199
2008-01-14This patch adds support for configuration profiles, which can be used toStig Bjørlykke2-3/+3
configure and use more than one set of preferences and configuration files. This can be found in the "Configuration Profiles..." menu item from the Edit menu, or by pressing Shift-Ctrl-A. It's also possible to start wireshark and tshark with a named profile by using the "-C ProfileName" option. A new status pane in the main window will show the current profile. The configuration files currently stored in the Profiles are: - Preferences - Capture Filters - Display Filters - Coloring Rules - Disabled Protocols - User Accessible Tables The recent data are by design not added to the profile. Planned future enhancements: - make a more convenient function to switch between profiles - add a "clone profile" button to copy an existing profile - make the profiles list active and accept return as OK - save users "Decode as" in the profile - make new, clone and deletion of profiles more secure - make some of the recent values available in the profile This patch also fixes: - setting default status pane sizes - a bug setting status pane for packets when not having main lower pane. svn path=/trunk/; revision=24089
2008-01-07Add a cast.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=24028
2008-01-07From Balint Reczey (bug 2146):Stig Bjørlykke3-6/+17
Make it possible to write Lua dissectors that use TCP reassembly. svn path=/trunk/; revision=24026
2007-12-17From RuudS:Stig Bjørlykke1-1/+3
Patch to LUA to implement byte arrays. This fixes bug 2110. svn path=/trunk/; revision=23896
2007-10-16From tmiller@hcjbtech.org : Spelling error on GDS DB protocol dissector: ↵Sake Blok2-6/+6
"Buffer lenght:" (recursively grepped through the source and corrected all occurences, even the ones just in comments) svn path=/trunk/; revision=23211
2007-10-16A few more s/fopen/eth_fopen/Jeff Morriss1-46/+47
svn path=/trunk/; revision=23207
2007-08-02Squelch a warning.Guy Harris1-0/+1
svn path=/trunk/; revision=22442
2007-08-02Gak. <> makes it too easy to make these make- scripts do what the restGuy Harris3-42/+25
do, and take $(srcdir) as the first argument. Back the previous changes out, for now. svn path=/trunk/; revision=22441
2007-08-02We have to include Makefile.common if we move definitions we needGuy Harris2-1/+3
there.... svn path=/trunk/; revision=22440
2007-08-02Move the list of source files to a Makefile.common file.Guy Harris3-24/+39
Don't put $(srcdir)/ at the beginning of those file names - other Makefile.am files don't have it, and it appears to break "make distcheck", at least on my Mac OS X 10.4 machine. svn path=/trunk/; revision=22439
2007-07-21Fix documentation commentsLuis Ontanon1-3/+9
svn path=/trunk/; revision=22373
2007-05-21Fix warning about unused parameterJörg Mayer1-1/+1
svn path=/trunk/; revision=21863
2007-05-21Hack to fix out of tree buildsJörg Mayer1-9/+9
svn path=/trunk/; revision=21861
2007-05-02The forgotten file strikes back.Luis Ontanon1-1/+2
... It also fixes a lua compile warning/error in wslua_gui.c. ... svn path=/trunk/; revision=21656
2007-05-02From Tamas Regos (Via Balint Reczey)Luis Ontanon2-3/+177
The attached patch adds ability of of creating radio button, drop-down list and range type preference entries to the Lua plugin. It also fixes a lua compile warning/error in wslua_gui.c. The patch is written by Tamas Regos, he asked me to send it to the list. svn path=/trunk/; revision=21655
2007-04-12From: Balint ReczeyLuis Ontanon1-0/+25
I would like to handle the rare situation of Little Endian encoded IP addresses, so i added a function which reads the address with tvb_get_ipv4(), then swaps the bytes before SET_ADDRESS(). svn path=/trunk/; revision=21397
2007-04-11have tvbrange:get_ipv4() not modifying the byte order of the extraced data.Luis Ontanon2-2/+6
have Proto.new() registering the protocol by name. svn path=/trunk/; revision=21385
2007-03-23From Sake Blok:Stephen Fisher1-2/+7
Fix for bug #491: Unexpected frame.time_delta behavior This patch ... fixes bug 491. It does this by changing the behaviour of the frame.time_delta field so it reflects the delta time between captured packets (tshark already did this). To keep the delta time between displayed packets, the field frame.time_delta_displayed is created. svn path=/trunk/; revision=21154
2007-03-23From Sebastien Tandel:Stephen Fisher1-1/+1
(Temporarily disable the warnings as errors default on Unix to get to get the buildbots and people with gcc40 going again until those additional warnings gcc40 generates can be fixed-I'm working on it ASAP) Patch for configure.in which disables by default the treatment of warnings as errors. It can be enabled with './configure --with-warnings-as-errors'. The macro will test first if GCC is present. If it's the case, HAVE_WARNINGS_AS_ERRORS is defined. All the USING_GCC have been replaced by HAVE_WARNINGS_AS_ERRORS. With this switch, people won't suffer from unexpected warnings when downloading svn sources during the transition time ;) svn path=/trunk/; revision=21153
2007-03-22Add -Werror for gcc to a few more directories and fix a few warningsStephen Fisher1-0/+4
svn path=/trunk/; revision=21129
2007-03-22add "treat warnings as errors" flag(s)Ulf Lamping1-1/+1
svn path=/trunk/; revision=21125
2007-03-22fix warningsUlf Lamping1-2/+2
svn path=/trunk/; revision=21124
2007-03-21Fixes for: warning: ISO C does not allow extra ';' outside of a functionJörg Mayer1-1/+1
svn path=/trunk/; revision=21085
2007-03-21Fixes for: warning: comma at end of enumerator listJörg Mayer1-1/+1
svn path=/trunk/; revision=21084
2007-03-21packet_info.c and packet.cLuis Ontanon2-3/+4
add sccp_info to struct _packet_info (Sorry but the way private_data works and the fact that TCAP uses it and BSSAP/RANAP can be tunnelled on GSMMAP over TCAP makes it impossible to avoid) SCCP - Have SCCP to have a TAP, - Fix associations so that every message belongs to the association. - Export message type values so that they can be used by a tap listener RANAP - Have RANAP information attached to the sccp_info BSSAP + GSM_A - Have DTAP, BSSMAP and BSSAP info attached to the sccp_info svn path=/trunk/; revision=21076
2007-03-18Fix Windows Makefiles so clean removes all pdb files (PDB_FILE no longer ↵Bill Meier1-1/+1
defined) svn path=/trunk/; revision=21052
2007-03-08fix Bug 1370Luis Ontanon1-1/+7
LUA function all_field_infos() causes wire shark to terminate. svn path=/trunk/; revision=21004
2007-03-04do not return before ENDTRY when handling an exception, this would leave the ↵Luis Ontanon2-7/+12
fat stack without the top and cause the dereferencing of a null pointer later on when popping in the next ENDTRY. Oddly enough this shows up only on windows. Maybe there's something good in my Mac's temporary disability! svn path=/trunk/; revision=20972
2007-01-29some cleanup and pset of svn:ignoreLuis Ontanon1-7/+0
svn path=/trunk/; revision=20603
2007-01-27fix distcheckLuis Ontanon1-4/+0
svn path=/trunk/; revision=20578
2007-01-27Fix docbook documentationLuis Ontanon4-565/+7
svn path=/trunk/; revision=20577
2007-01-26A few more ethereal --> wiresharkBill Meier1-1/+1
svn path=/trunk/; revision=20559
2007-01-24Fix compilation (under Windows, at least).Gerald Combs1-111/+111
svn path=/trunk/; revision=20541
2007-01-23add range to the metatable of Tvb.Luis Ontanon1-0/+1
svn path=/trunk/; revision=20540
2007-01-23tvb:range did not appear under Tvb in generated refmanLuis Ontanon2-8/+18
pinfo.curr_proto appeared as pinfo.match pinfo.columns in the refman was pinfo.cols in lua (now it is both in lua and in refman) svn path=/trunk/; revision=20539
2007-01-21fix bug 1321Luis Ontanon1-1/+3
svn path=/trunk/; revision=20515
2007-01-21fix bug 1320Luis Ontanon1-1/+1
svn path=/trunk/; revision=20514
2007-01-18Add separate union entries to fvalue.value for signed and unsignedMartin Mathieson1-1/+3
32-bit numbers. Separate signed and unsigned accessors have been added and used where appropriate. Definitely not for 0.99.5. svn path=/trunk/; revision=20472
2007-01-05* have the Dumper using either '\' or '/' as directory separator in all ↵Luis Ontanon2-6/+33
plattforms. * use the directory separator not a pointer to it. svn path=/trunk/; revision=20330
2007-01-05 * rename url->file in browser_open_data_file()Luis Ontanon1-4/+4
svn path=/trunk/; revision=20328
2007-01-05 + register_stat_cmd_arg()Luis Ontanon1-11/+83
* use '/' as directory separator on both plattforms svn path=/trunk/; revision=20327
2007-01-04Remove duplicate targets.Gerald Combs1-6/+0
svn path=/trunk/; revision=20319
2007-01-04Add the documentation directoryLuis Ontanon1-0/+7
svn path=/trunk/; revision=20317
2007-01-04Rename pkgdata_DATA to dist_pkgdata_DATA, to make sure it's in theGuy Harris1-2/+1
distribution. That means we don't have to include it in EXTRA_DIST. svn path=/trunk/; revision=20310
2006-12-28Add clean targets to wslua. Fix the config.nmake include in crypt.Gerald Combs1-0/+5
svn path=/trunk/; revision=20232
2006-12-27+ browser_open_url()Luis Ontanon2-2/+44
+ browser_open_data_file() svn path=/trunk/; revision=20223