aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/megaco
AgeCommit message (Collapse)AuthorFilesLines
2003-11-06Use "$(OBJECTS)" whenever a complete list of .obj files appears, ratherGuy Harris1-3/+3
than repeating the list from the setting of OBJECTS. svn path=/trunk/; revision=8893
2003-10-10Give every Makefile.nmake file a "distclean" rule, and have "distclean"Guy Harris1-1/+3
recurse into subdirectories doing "nmake -f Makefile.nmake distclean". Have "nmake -f Makefile.nmake clean" not remove stuff that "make clean" doesn't remove (such as Flex/Bison output and config.h files) - and have "nmake -f Makefile.nmake distclean" remove stuff that "make distclean" removes, including "tethereal-tap-register.c" and "ethereal-tap-register.c". svn path=/trunk/; revision=8672
2003-09-24From Anders Broman: fix a crash, and fix trailing whitespace onGuy Harris1-19/+47
Transaction ID. svn path=/trunk/; revision=8533
2003-09-05- Make --enable-static work again (configure.in, Makefile.am)Jörg Mayer2-9/+4
- get rid of ...-static.o files in the build process (now done via config.h instead of compiler flag) - make packet-rtnet link statically (remove one unused function, rename another one) svn path=/trunk/; revision=8389
2003-09-03From Anders Broman: use a value_string table rather than a switch toGuy Harris1-452/+113
translate MEGACO error codes to descriptions, and show the media descriptor differently. "tvb_new_subset(tvb,0,tvb_length(tvb),-1)" returns a tvbuff equivalent to "tvb"; don't bother calling "tvb_new_subset()". svn path=/trunk/; revision=8353
2003-08-26From Anders Broman, updates and fixes to MEGACORonnie Sahlberg1-231/+336
svn path=/trunk/; revision=8276
2003-07-30Crude workaround for a deficiency in the MEGACO parser - it assumes thatGuy Harris1-3/+36
all packets have an "=" in them, which TransactionResponseAcks do not. Check some of the "tvb_find_guint8()" replies and give up if they return -1. svn path=/trunk/; revision=8102
2003-07-26Updates to the MEGACO plugin so that it will call the H.245 dissector for someRonnie Sahlberg1-25/+140
instancews where megaco encapsulates h.245 svn path=/trunk/; revision=8087
2003-07-08Make the top-level protocol tree entry cover all the data beingGuy Harris1-92/+86
dissected, rather than none of it. Clean up white space. svn path=/trunk/; revision=7992
2003-07-01From Christoph Wiest: redo MEGACO dissector to more fully parseGuy Harris2-266/+2619
text-format messages. svn path=/trunk/; revision=7957
2003-06-14Define GLIB_LIBS and GTK_LIBS variables in config.nmake (based onGuy Harris1-2/+2
variables the user configures - the user isn't expected to change GLIB_LIBS or GTK_LIBS, and there's a comment nothing that users shouldn't have to do so), which contain the appropriate libraries for building stuff that requires only GLib, and stuff that required GTK+ and GLib, respectively, and use those macros in the Makefile.nmake files. svn path=/trunk/; revision=7885
2003-06-14Define GLIB_CFLAGS and GTK_CFLAGS variables in config.nmake (based onGuy Harris1-4/+2
variables the user configures - the user isn't expected to change GLIB_CFLAGS or GTK_CFLAGS, and there's a comment nothing that users shouldn't have to do so), which contain the appropriate "/I" flags for building stuff that requires only GLib, and stuff that required GTK+ and GLib, respectively, and use those macros in the Makefile.nmake files. svn path=/trunk/; revision=7884
2003-04-30Modify tvb_get_nstringz*() to behave more like snprintf(). Make changesGerald Combs1-2/+2
where necessary to reflect the new behavior. svn path=/trunk/; revision=7607
2003-01-24Remove an unused function prototypeJörg Mayer1-3/+1
svn path=/trunk/; revision=6998
2003-01-15#if 0 out the binary protocol stuff, as there's only a dissector forGuy Harris1-24/+37
text MEGACO. Fix up the preference description strings. svn path=/trunk/; revision=6928
2003-01-14Give it an RCS ID.Guy Harris1-0/+2
svn path=/trunk/; revision=6927
2003-01-14From Christian Falckenberg: beginnings of a MEGACO dissector.Guy Harris10-0/+853
Move SCTP payload protocol IDs to a header file, and get the PPIDs from that header file rather than defining them in dissectors running atop SCTP. Use both the old(?) and official PPID for ASAP. svn path=/trunk/; revision=6926