aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2003-07-29Clean up argument names.Guy Harris1-3/+3
svn path=/trunk/; revision=8097
2003-07-29Use GLib's macros for converting from host byte order to little-endian.Guy Harris1-17/+3
svn path=/trunk/; revision=8096
2003-07-29Don't free "wdh->dump.opaque" in the close routine - "wtap_dump_close()"Guy Harris1-6/+2
does it for you. "wdh->dump.opaque" should never be null, so unconditionally call "lanalyzer_dump_header()". svn path=/trunk/; revision=8095
2003-07-29Use "guint16" and "guint32" for items in data records, rather thanGuy Harris1-55/+65
"unsigned short", "unsigned int" (or "int", as the items appear to be unsigned), or "unsigned long". Convert data to and from the appropriate byte order. Don't free the private data structure in the dumper's close routine - "wtap_dump_close()" does that for you. svn path=/trunk/; revision=8094
2003-07-29From Thierry Martin: support for reading files from Accellent 5Views LANGuy Harris14-37/+562
agents. svn path=/trunk/; revision=8093
2003-07-29fix minor bugs in h245 decodingRonnie Sahlberg2-53/+30
svn path=/trunk/; revision=8092
2003-07-29Update PER so that the bit that indicates whether an extension is encoded or notRonnie Sahlberg1-2/+2
is displayed in the tree for CHOICE constructs when internal PER fields are displayed. svn path=/trunk/; revision=8091
2003-07-29Update to RPC, prettiry the presentation of duplicates.Ronnie Sahlberg1-5/+5
Only cosmetic changes, no functionality change. svn path=/trunk/; revision=8090
2003-07-29update to PER to decode PrintableString properlyRonnie Sahlberg1-5/+2
svn path=/trunk/; revision=8089
2003-07-29The NetInfo parent server address is an IPv4 address, and the NetInfoGuy Harris1-107/+107
parent server tag is a string. Also, it's "NetInfo", not "Netinfo". Clean up white space. svn path=/trunk/; revision=8088
2003-07-26Updates to the MEGACO plugin so that it will call the H.245 dissector for someRonnie Sahlberg2-27/+143
instancews where megaco encapsulates h.245 svn path=/trunk/; revision=8087
2003-07-25Get rid of carriage returns - some compilers don't like them.Guy Harris2-55/+55
svn path=/trunk/; revision=8086
2003-07-25Remove some warnings from gcc.Gilbert Ramirez4-7/+7
svn path=/trunk/; revision=8085
2003-07-25Fix signed/unsigned comparison warnings.Gilbert Ramirez6-26/+42
svn path=/trunk/; revision=8084
2003-07-25Add to the fundamental types passed between the scanner and the parser.Gilbert Ramirez21-123/+476
Besides "STRING", there is now "UNPARSED_STRING", where the distinction is that "STRING" was a double-quoted string and "UNPARSED_STRING" is just a sequence of characters that the scanner didn't know how to scan/parse, so it's up to the Ftype to parse it. This gives us more flexibility and prepares the dfilter parsing engine for the upcoming addition of the "contains" operator. In the process of doing this, I also re-did the double-quoted string support in the scanner, so that instead of the naively-simple support we used to have, double-quoted strings now can have embedded dobule-quotes, embedded octal sequences, and embedded hexadecimal sequences: "\"" embedded double-quote "\110" embedded octal "\x48" embedded hex Enhance the dfilter unit test script to be able to run a single collection of tests instead of having to run all of them all the time. svn path=/trunk/; revision=8083
2003-07-24From Lars Roland: add a preference to control whether, in the TCPGuy Harris2-17/+42
dissector, heuristic dissectors should be checked before, or after, dissectors for specific port numbers. Add a similar preference for UDP. Clean up white space. svn path=/trunk/; revision=8082
2003-07-24From Markus Seehofer: check the correct byte (the second byte, not theGuy Harris1-3/+3
first byte) in a host membership query to distinguish between IGMPv1 and IGMPv2. svn path=/trunk/; revision=8081
2003-07-24From Jean-Baptiste Marchand: add descriptions of permissions forGuy Harris3-49/+51
SAM_SERVER and SAM_USER objects in SAMR. svn path=/trunk/; revision=8080
2003-07-24Initial Laplink support, from Brad Hards.Guy Harris4-2/+226
svn path=/trunk/; revision=8079
2003-07-24Remove an extra comma.Gerald Combs1-2/+2
svn path=/trunk/; revision=8078
2003-07-23Final updates for 0.9.14.Gerald Combs2-270/+232
svn path=/trunk/; revision=8076
2003-07-23Back out the changes made earlier.Gerald Combs2-4/+4
svn path=/trunk/; revision=8075
2003-07-23Fix a bug reported by Dave Nicoson:Jörg Mayer1-9/+4
Igmp v1 membership reports should not be misdetected as v2 reports (don't confuse the query with the report). svn path=/trunk/; revision=8074
2003-07-23Make "--enable-usr-local" disabled by default, as suggested by Joerg Mayer.Gerald Combs2-4/+4
svn path=/trunk/; revision=8073
2003-07-23Update manufJörg Mayer1-23/+113
svn path=/trunk/; revision=8072
2003-07-23Update FAQJörg Mayer2-135/+167
svn path=/trunk/; revision=8071
2003-07-23Remove duplicate targets and circular rules, as pointed out by Guy.Gerald Combs1-3/+2
svn path=/trunk/; revision=8070
2003-07-23Give a more detailed message when WSAStartup fails.Guy Harris1-9/+42
svn path=/trunk/; revision=8069
2003-07-23Prep for the 0.9.14 releaseGerald Combs5-10/+300
svn path=/trunk/; revision=8068
2003-07-22From Greg Morris: code to support searches for text or raw binary dataGuy Harris5-20/+369
in a frame in Find Frame. svn path=/trunk/; revision=8067
2003-07-22From Lars Roland: Updates to support linking against Glib 2.2 plus GTK+ 1.3Gerald Combs2-4/+64
on Windows. svn path=/trunk/; revision=8066
2003-07-22Fix a "make distcheck" failure.Gerald Combs1-4/+22
svn path=/trunk/; revision=8065
2003-07-22Fix a bug in RPC where the RCP_DUP items where not always added to the treeRonnie Sahlberg1-19/+15
and were thus not always filterable. At the same time, change the dup fields to be placed visibly in the tree and point to the original of the dup. svn path=/trunk/; revision=8064
2003-07-22Add two preferences to control ADNS, one to enable/disable it and one toGerald Combs8-26/+83
set its concurrency level. Fix an ADNS queueing bug. svn path=/trunk/; revision=8063
2003-07-21Don't assume that, if you've already seen the packet, you can use theGuy Harris1-20/+48
global variables to determine if packets were dropped, because you can't - packets can be visited in any order. Instead, attach to packets preceded by dropped packets protocol data, as a flag that packets were dropped. Re-initialize the global variables when a capture is opened. svn path=/trunk/; revision=8062
2003-07-21Get rid of two unused (and empty) value_string tables.Guy Harris1-28/+62
Make it correctly handle short frames (frames not long enough to have a 4-byte EOF record). Don't give the "dropped packet" protocol tree item a length, as it doesn't directly correspond to any data in the packet. svn path=/trunk/; revision=8061
2003-07-21Use "val_to_str()" to translate NDS verb numbers to strings.Guy Harris1-158/+20
svn path=/trunk/; revision=8060
2003-07-21Add some missing entries to "ncp_nds_verb_vals[]".Guy Harris1-1/+3
svn path=/trunk/; revision=8059
2003-07-21From Devin Heitmueller: include the authentication padding in the stubGuy Harris1-11/+16
data when decrypting it, as, at least for NTLMSSP encryption, the stub *and* the authentication padding are encrypted as a single lump. svn path=/trunk/; revision=8058
2003-07-21Look for source files in the current directory first and then in srcdir.Uwe Girlich1-2/+5
This semantic is used in make-reg-dotc (the shell script) as well and it is needed, if the source directory and the build directory are different. svn path=/trunk/; revision=8057
2003-07-20Use "ncp_nds_verb_vals" for the NDS Verb item.Guy Harris1-2/+2
svn path=/trunk/; revision=8056
2003-07-19Fix a couple of distcheck failures.Gerald Combs2-3/+4
svn path=/trunk/; revision=8055
2003-07-19Disable threads by default with gtk2.Olivier Abad1-2/+2
svn path=/trunk/; revision=8054
2003-07-19In packet_list_button_pressed_cb :Olivier Abad1-1/+3
we must check if the event occured in the clist_window (because the x,y pixel positions of the event are relative to this window), before calling gtk_clist_get_selection_info() Fixes debian bug #199763 svn path=/trunk/; revision=8053
2003-07-19export T38FaxProfile and DataProtocolCapability since these are user in ↵Ronnie Sahlberg2-4/+8
H.225 as well svn path=/trunk/; revision=8052
2003-07-19In set_plist_sel_browse : change broken logic when determining if theOlivier Abad1-12/+10
mode has changed. svn path=/trunk/; revision=8051
2003-07-19Add URLs and RFC numbers for protocol specs.Guy Harris1-16/+48
#define the SSL 3.x message types in decimal, as they're decimal in the spec. #if 0-out some tables that would be used if we dissected some messages. Move some of the unimplemented SSL 3.x message cases to be in numerical order by message type (and appearance in the TLS 1.0 spec). svn path=/trunk/; revision=8050
2003-07-19Add PrintableString stub. H225 needs this type.Ronnie Sahlberg2-2/+13
I could not find a definition of which order the characters in the restricted set are encoded in so I could not implement the actual decoding. svn path=/trunk/; revision=8049
2003-07-19Get rid of a no-longer-used table.Guy Harris1-9/+1
svn path=/trunk/; revision=8048
2003-07-19Get rid of check for a null "docsis_vsif_handle" - "dissector_add()"Guy Harris1-2/+1
should blow up when handed a null pointer on all platforms that map low addresses out of the address space, which is most if not all of them at this point, and calls to "assert()" cause problems if you mix GCC-compiled and Sun-C-compiled code. svn path=/trunk/; revision=8047