aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wspython/wspy_register.c
AgeCommit message (Collapse)AuthorFilesLines
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-2/+0
svn path=/trunk/; revision=45016
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2011-10-24From Eliot:Anders Broman1-22/+6
Change to python support functions. Avoid passing C dissector callback via python to create_dissector_handle. This caused problems at least on 64 bit linux. Get all dissector args in one call. Simplifies common usage. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6448 svn path=/trunk/; revision=39535
2011-10-24From Eliot:Anders Broman1-1/+1
Search personal plugins dir for python plugins https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6448 svn path=/trunk/; revision=39534
2011-10-02Removed the protocol registration updates in the splash screen for PythonStig Bjørlykke1-32/+6
dissectors, because it does not work as expected and causes an assert. Added generic splash updates for python register and handoff instead. This should fix bug 5431. svn path=/trunk/; revision=39221
2011-04-28Don't dump core if Python was not able to load the dissector registration fileJeff Morriss1-1/+5
(e.g., due to a syntax error). svn path=/trunk/; revision=36922
2011-04-27My version of Python (2.5.2) core dumps if PySequence_Check is called with aJeff Morriss1-2/+2
NULL pointer (because no dissectors were registered). Don't call that function with a NULL pointer. Also update the output when no dissectors are registered. Not sure if we should be printing *anything* in this situation, but for now make the output interesting. svn path=/trunk/; revision=36917
2010-06-01From Kovarththanan Rajaratnam via bug 3500:Gerald Combs1-1/+1
Sébastien's initial commit [1] didn't contain support for embedding Python on Windows. [1] http://anonsvn.wireshark.org/viewvc?view=rev&revision=28529 From me: Comment out PYTHON_EMBED for now. Start a list of known Python+CRT versions. Add get_wspython_dir to libwireshark.def. svn path=/trunk/; revision=33036
2009-09-29Mark unused argument instead of assigning to an unused variable.Stig Bjørlykke1-4/+1
svn path=/trunk/; revision=30204
2009-09-29Use correct prototypes when having no arguments.Stig Bjørlykke1-14/+16
Made some functions static. Removed C++ comments. svn path=/trunk/; revision=30194
2009-09-21Fix for bug 4034:Jaap Keuter1-10/+9
Fix for missing register file and cleanup of code in register_all_py_protocols_func(). svn path=/trunk/; revision=30058
2009-09-21Set svn properties and fix Id keyword.Jaap Keuter1-1/+1
svn path=/trunk/; revision=30057
2009-05-29python binding for wireshark (first commit)Sebastien Tandel1-0/+270
* ability to write dissectors with python for wireshark. documentation (http://wiki.wireshark.org/Python) svn path=/trunk/; revision=28529