aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/lua
AgeCommit message (Collapse)AuthorFilesLines
2006-11-23Errase the lua plugin, its not longer in use.Luis Ontanon21-6735/+0
svn path=/trunk/; revision=19965
2006-07-19From Bálint RéczeyAnders Broman1-0/+3
- Added support for versioned lua libnames to aclocal.m4 - create generated elua_register.h from Makefile svn path=/trunk/; revision=18769
2006-06-29Some improvements to the Lua plugin:Luis Ontanon3-14/+10
- Makefile.am fix: elua_register.h generation + checking serialized - ProtoField.new(..) parameter parsing fix and changes - enabling gui_enabled() function in Lua (typo fix, thanks to Tamas Regos) svn path=/trunk/; revision=18611
2006-06-02remove plugin.c in distlcleanJörg Mayer1-2/+3
svn path=/trunk/; revision=18312
2006-05-31Tethereal/tethereal -> TShark/tshark.Gerald Combs2-2/+2
svn path=/trunk/; revision=18268
2006-05-31libethereal -> libwireshark. idl2eth -> idl2wrs. There are a _lot_ ofGerald Combs1-3/+3
changes here. It compiles OK on OS X, but hasn't been tested anywhere else. svn path=/trunk/; revision=18260
2006-05-28Ethereal->WiresharkAnders Broman11-13/+13
svn path=/trunk/; revision=18231
2006-05-22ethereal->wireshark updatesRonnie Sahlberg2-3/+3
svn path=/trunk/; revision=18206
2006-05-21name changeRonnie Sahlberg17-34/+34
svn path=/trunk/; revision=18197
2006-03-30Fix FieldInfo and add an attribute for the filter name.Luis Ontanon1-13/+56
svn path=/trunk/; revision=17774
2006-03-30TextWindow:Luis Ontanon1-4/+92
- add buttons - make editable svn path=/trunk/; revision=17773
2006-03-29Get elua to build on IA32Jaap Keuter1-1/+1
svn path=/trunk/; revision=17755
2006-03-28Fix compilation under Windows.Gerald Combs2-51/+51
svn path=/trunk/; revision=17751
2006-03-27elua_field.c was added to $MODULES but not to $OBJECTSLuis Ontanon1-0/+1
svn path=/trunk/; revision=17749
2006-03-27Major properties cleanupJaap Keuter3-0/+0
svn path=/trunk/; revision=17747
2006-03-27This worked because I've edited elua_field.h as .c and the only thing in ↵Luis Ontanon1-4/+395
elua_field was #include "elua_field.h" This is the actual elua_field.c svn path=/trunk/; revision=17743
2006-03-27Improve Field Extraction by returning a handle to a field_info instead of ↵Luis Ontanon5-190/+14
just the value. svn path=/trunk/; revision=17742
2006-03-19Add pinfo.lo and pinfo.hi been thise the lower and the higher between ↵Luis Ontanon1-9/+55
pinfo.src and pinfo.dst. Do not faill if Columns is NULL, as it can normally be NULL. svn path=/trunk/; revision=17677
2006-03-16we don't need to "ban" the print call any longerUlf Lamping1-11/+0
svn path=/trunk/; revision=17652
2006-03-13Use checkTextWindow instead of shiftTextWindow to fetch the window object ↵Luis Ontanon1-15/+38
from the stack, shiftXxx will happily (and rightfully) return a null pointer without an error. svn path=/trunk/; revision=17615
2006-03-13Expert info is going to be used in runtime.Luis Ontanon1-67/+8
For the sake of speed use integers instead of strings to then be converted into integers. svn path=/trunk/; revision=17609
2006-03-12I Hope this worksLuis Ontanon1-1/+4
svn path=/trunk/; revision=17603
2006-03-12Move make-init-lua.pl and family to plugins/lua and have init.lua installed ↵Luis Ontanon3-1/+189
in the right place svn path=/trunk/; revision=17602
2006-03-12reenable TreeItem,Luis Ontanon2-10/+16
shiftXXX() was broken svn path=/trunk/; revision=17599
2006-03-12Protocols are now invoked.Luis Ontanon1-9/+8
svn path=/trunk/; revision=17598
2006-03-11Remove debug code...Luis Ontanon1-10/+0
svn path=/trunk/; revision=17595
2006-03-11Protocols register OK.Luis Ontanon4-51/+82
svn path=/trunk/; revision=17594
2006-03-09Add lua:s nmakefile.nmake to the distribution.Anders Broman1-1/+2
svn path=/trunk/; revision=17552
2006-03-07Remove strhash test code from lua...Luis Ontanon1-29/+0
svn path=/trunk/; revision=17488
2006-03-07- merge SubTree, ProtoTree and ProtoItem into a single TreeItem class.Luis Ontanon9-414/+278
- By the same token get rid of ProtoFieldArray having Proto.fields attribute been a lua "Array" containing fields. (still untested, and probably broken) svn path=/trunk/; revision=17486
2006-03-05+ retap_packets()Luis Ontanon1-0/+7
svn path=/trunk/; revision=17463
2006-03-05+ retap_packets()Luis Ontanon2-26/+6
+ complete gtk TextWindow + fix elua_dumper + fix elua_proto svn path=/trunk/; revision=17462
2006-03-02- make them work as the got broken while docommenting them.Luis Ontanon2-3/+3
svn path=/trunk/; revision=17453
2006-03-02- remove some warnings from the windows compileLuis Ontanon3-28/+51
- some more Tap documentation svn path=/trunk/; revision=17442
2006-03-01Add Lua support by default for Win32. Fix some compilation problems.Gerald Combs2-16/+20
Add Lua information to the version paragraph. svn path=/trunk/; revision=17440
2006-02-27- Some more commentsLuis Ontanon2-19/+23
svn path=/trunk/; revision=17415
2006-02-25The semantics of luaL_checkudata() change between 5.0 and 5.1 (the later ↵Luis Ontanon3-11/+13
triggers an error). make sure isXxx() functions do not trigger an error, we want them to return not to pop the stack back to the lua caller. svn path=/trunk/; revision=17411
2006-02-25- elua_protoLuis Ontanon3-147/+261
- add doComments - fix an error in DissectorTable_remove - reorganize DissectorTable_try - elua.h squelch some warnings - Makefile.nmake - replace the $^ macro with the targets (i.e. do what nmake was supposed to do) - move the doc target into the conditional part svn path=/trunk/; revision=17406
2006-02-24I changed some vanames and did not compile...Luis Ontanon2-5/+5
svn path=/trunk/; revision=17399
2006-02-23- More "docOMMentation" of the APILuis Ontanon4-196/+402
- also supress Address__ge and Address_gt because re-reading the ref manual I noticed that they are suplerfluous (Lua assumes that a > b is equivalent to b < a, which in most cases (as this) it does) - have elua_makedoc.pl hanlde docomments in more than one line and after the line where the entity s defined. svn path=/trunk/; revision=17382
2006-02-23Delete docs in maintainer-clean targetJörg Mayer1-1/+2
svn path=/trunk/; revision=17379
2006-02-22Forgot...Luis Ontanon1-0/+128
Elua functions in elua.c moved to this new file. svn path=/trunk/; revision=17375
2006-02-22- More documentation embeded in the source code.Luis Ontanon11-240/+216
- Changed some Macros - Have dump:close NULLyfing the boxed object so that no futher operations are performed on a dumper once is closed. - Check if elua_register.h has changed and avoid overwriting it if it hasn't changed to avoid unnecessary compilations. svn path=/trunk/; revision=17374
2006-02-22elua_register.h wasn't built automaticallyJörg Mayer1-2/+3
svn path=/trunk/; revision=17371
2006-02-21- rename all the c filesLuis Ontanon13-412/+705
- have elua_makereg.pl generating the declaration and registration Macros for each module - start of elua_makedoc.pl that should generate the Reference Manual from the code. svn path=/trunk/; revision=17362
2006-02-19- Use lua 5.1Luis Ontanon9-210/+72
- Compress *_register() functions svn path=/trunk/; revision=17354
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 Ontanon1-4/+1
svn path=/trunk/; revision=17346
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