aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2003-03-03Added tap functionality to UDPRonnie Sahlberg4-41/+125
Added top talkers calculation for UDP socketpairs try -z io,users,udpip svn path=/trunk/; revision=7266
2003-03-03Handle packet direction information for SDLC Sniffer captures.Guy Harris3-10/+64
Add a bunch of capture types discovered by stuffing them into Windows Sniffer captures and seeing what a Sniffer thought they were. Add support for writing at least some of them. svn path=/trunk/; revision=7265
2003-03-03Update for tethereal -z io,users, top talkers :Ronnie Sahlberg5-5/+83
"tcpip" added. -z io,users,tcpip will create a top talkers list of individual tcpip connections svn path=/trunk/; revision=7264
2003-03-03- fix FAQ display (faq_help[] was not initialised before strcatLaurent Deniel1-59/+70
so random characters at first line display if not worst, finally remove this strcat stuff and directly call insert_text with each faq_part) - add missing FAQ redraw in help_redraw - put FAQ after Capture Filters to restore original order (i.e. Display near Capture Filters) - udpate overview according to manual page svn path=/trunk/; revision=7263
2003-03-03packet-rmp.c: Jochen FriedrichJörg Mayer1-3/+3
Machine type in rmp seems to be an ASCII string rmp seems to mean "Remote Maintenance Protocol" svn path=/trunk/; revision=7262
2003-03-03Put ps.c back in DISTCLEANFILES.Gerald Combs1-1/+2
svn path=/trunk/; revision=7261
2003-03-03Add SACK leftedge and rightedge filtering ... Added them as decimalRichard Sharpe1-3/+15
values which seemed appropriate, but had the split them into two items in the option tree. svn path=/trunk/; revision=7260
2003-03-03As suggested by Guy, rather than add_uint_hidden, and then add_text,Richard Sharpe1-9/+6
do an add_uint_format(...). It was all too easy. svn path=/trunk/; revision=7259
2003-03-02The frame number passed to "goto_frame()" wasn't necessarily explicitlyGuy Harris1-4/+4
specified by the user, so if the frame with that frame number isn't being displayed, just refer to it as "That frame", not "The frame with that frame number". (That's even OK if they *did* specify it.) (If there's no such frame, that "shouldn't happen" in cases where it was implicitly specified, e.g. by getting it from a list of fragments, or a "{request,reply} is in frame XXX" field, or clicking on a point in a TCP graph.) svn path=/trunk/; revision=7258
2003-03-02Get rid of unneeded includes of "../ui_util.h".Guy Harris2-4/+2
svn path=/trunk/; revision=7257
2003-03-02Use "goto_frame()" to go to a given frame number, notGuy Harris1-9/+5
"packet_list_set_selected_row()" - frame N isn't necessarily being displayed as row N-1. svn path=/trunk/; revision=7256
2003-03-02Disable simultaneous building of static and shared binariesJörg Mayer2-114/+68
svn path=/trunk/; revision=7255
2003-03-02Have "goto_frame()" put up error dialog boxes itself, rather than havingGuy Harris4-47/+24
its callers put up the same error dialog boxes. Have it just return a success vs. failure Boolean. svn path=/trunk/; revision=7254
2003-03-02From Jochen Friedrich: add support for:Guy Harris10-11/+451
HP extended 802.2 LLC HP-UX remote management over HP extended 802.2 LLC SNMP over HP extended 802.2 LLC. svn path=/trunk/; revision=7253
2003-03-02From Jochen Friedrich: fix length checking, and improve XID type 3Guy Harris2-51/+135
dissection (fixes plus additions). svn path=/trunk/; revision=7252
2003-03-02Update manufJörg Mayer1-19/+184
svn path=/trunk/; revision=7251
2003-03-02Remove wip commentsJörg Mayer1-4/+1
svn path=/trunk/; revision=7250
2003-03-02Split FAQ into shorter lines before including it into the gtk help dialog.Jörg Mayer5-102/+214
Ignore tmp files generated by make-faq. Update FAQ. svn path=/trunk/; revision=7249
2003-03-02Change some plugin window geometry aspects.Laurent Deniel1-5/+5
svn path=/trunk/; revision=7248
2003-03-02Even though we don't yet dissect Intel ANS (NIC teaming) or MicrosoftGerald Combs2-6/+16
Network Load Balancing probes, we can at least recognize them as such. svn path=/trunk/; revision=7247
2003-03-02Add type of filter in capture/display filter windows.Laurent Deniel1-5/+14
svn path=/trunk/; revision=7246
2003-03-01Replace gdk_string_width and gdk_string_height withOlivier Abad1-39/+50
pango_layout_get_pixel_size in gtk2 code. svn path=/trunk/; revision=7245
2003-03-01Fix possible null pointer deference (conversation_data).Laurent Deniel1-3/+6
svn path=/trunk/; revision=7244
2003-03-01Add an "Apply" button to "Decode As" window.Laurent Deniel1-3/+40
svn path=/trunk/; revision=7243
2003-03-01The correct way to go to a frame with a given number is to useGuy Harris1-4/+20
"goto_frame()", not to assume that all frames are being displayed and to go to the row whose number is the frame number - 1. svn path=/trunk/; revision=7242
2003-03-01X.29 call user data in CALL REQUEST packets starts with an SPI and 3Guy Harris1-1/+10
bytes of other information, currently not used; that data is not to be dissected as X.29 packet data. svn path=/trunk/; revision=7241
2003-03-01A "hdr.xxb[20]" value of 2 in a version 2 capture appears to mean thatGuy Harris1-1/+13
it's a gigabit Ethernet capture, possibly, with special hardware, and that time stamps have 1000 times the resolution that they have in other captures (perhaps due to the special hardware having a higher-resolution clock?). svn path=/trunk/; revision=7240
2003-03-01Completely initialize all the address fields in a packet_info structure,Guy Harris1-1/+13
setting the length to 0 and the data pointer to a null pointer. svn path=/trunk/; revision=7239
2003-03-01Make the dissector static - it's not called from outside packet-bofl.cGuy Harris1-19/+24
Let the tvbuff mechanism check the length of the packet - don't check it ourselves. Put each field into the protocol tree and the Info column separately, so that we at least get a partial dissection - I've seen some packets that look like breath-of-life packets but that have only the PDU field. Show the PDU field with all 8 hex digits, and show the sequence number as an unsigned quantity, in the Info column. Show the padding size based on the actual length of the frame, not on the amount of the frame that was captured. svn path=/trunk/; revision=7238
2003-03-01Handle the flag bits in SRVLOC V1 as registered fields, just as we do inGuy Harris1-18/+60
SRVLOC V2. Get rid of trailing dots in the names of SRVLOC V2 flag bit fields. svn path=/trunk/; revision=7237
2003-03-01Allow filtering on the window scale value ...Richard Sharpe1-1/+3
svn path=/trunk/; revision=7236
2003-03-01Adding more options supportRichard Sharpe1-4/+9
svn path=/trunk/; revision=7235
2003-03-01If *all* you have in the user data portion of a Call Request packet isGuy Harris1-12/+22
an NLPID, don't dissect the user data as a packet for that protocol. svn path=/trunk/; revision=7234
2003-03-01Add tcp.options.mss_val to allow filtering on the value of the MSS optionRichard Sharpe1-1/+7
svn path=/trunk/; revision=7233
2003-03-01Some more options, cc and time stamp.Richard Sharpe1-1/+5
svn path=/trunk/; revision=7232
2003-03-01More tcp options stuff ...Richard Sharpe1-17/+29
svn path=/trunk/; revision=7231
2003-03-01More TCP Options supportRichard Sharpe1-1/+34
svn path=/trunk/; revision=7230
2003-03-01We have some SNMP if we have NET-SNMP *or* UCD SNMP, not just if we haveGuy Harris1-2/+2
NET-SNMP *and* UCD SNMP. svn path=/trunk/; revision=7229
2003-03-01Start adding support for options as hidden fields in the dissect tree.Richard Sharpe1-1/+12
svn path=/trunk/; revision=7228
2003-03-01More URLs, from a message from Martin Regner.Guy Harris1-1/+13
svn path=/trunk/; revision=7227
2003-03-01Yahoo Messenger YMSG protocol support, from Wayne Parrott.Guy Harris7-91/+467
Pull "packet-yhoo.h" into "packet-yhoo.c". svn path=/trunk/; revision=7226
2003-02-28"packet-isup.c" doesn't appear to need to include "packet-ip.h", soGuy Harris3-11/+111
don't do so. Pick up Anders Broman's table of Q.850 cause values, and his change to use "dissect_q931_cause_ie()" for cause indicators - but do it by modifying the Q.931 dissector's "dissect_q931_cause_ie()" to take, as an argument, the header field to use for the cause value, and export that routine and have the ISUP dissector call it, rather than by duplicating the cause IE dissector. svn path=/trunk/; revision=7225
2003-02-28From Anders Broman: make the cause value, and various phone numbers,Guy Harris1-14/+55
filterable fields. svn path=/trunk/; revision=7224
2003-02-28Add some additional payload types, put in a URL for the IANA page withGuy Harris1-27/+37
RTP parameters (including payload types), put in comments giving citations for the payload types, and improve the descriptions of some payload types. svn path=/trunk/; revision=7223
2003-02-28Assume all AT_NONE addresses are the same, as they have no address dataGuy Harris1-5/+15
to compare; based on a change from Laurent Meyer. svn path=/trunk/; revision=7222
2003-02-28Put out the "Checking whether to use UCD SNMP/NET-SNMP library ifGuy Harris1-2/+2
available" message *after* checking for net-snmp-config - nesting something such as AC_PATH_PROG that produces a "Checking..." message inside another check causes the pairing of check and result messages to be broken. svn path=/trunk/; revision=7221
2003-02-28Check for <ucd-snmp/ucd-snmp-config.h>, not <ucd-snmp/snmp.h> - we don'tGuy Harris1-4/+4
include <ucd-snmp/snmp.h>, we incldue <ucd-snmp/ucd-snmp-config.h>, and, at least with some UCD SNMP versions, you can't just include <ucd-snmp/snmp.h> without including a header to typedef "oid", so you get a warning from the configure script if it's built with autoconf 2.57 (it whines because the test program won't compile but the header exists). svn path=/trunk/; revision=7220
2003-02-28Call the capabilities subfields "mysql.caps.XXX", not "tcp.caps.XXX".Guy Harris1-15/+15
svn path=/trunk/; revision=7219
2003-02-28Fixes for a couple of problems, from Albert Chin:Guy Harris2-9/+32
1. On Solaris, inet_ntop and inet_pton need to be linked against -lnsl. AC_CHECK_FUNC() isn't good enough unless LIBS already has -lnsl. 2. On IRIX, the blanket redefinition of the inet_ntop function prototype is incorrect (compiling with MIPSpro 7.4): cc-1143 cc: ERROR File = inet_v6defs.h, Line = 32 Declaration is incompatible with "const char *inet_ntop(int, const void *, char *, socklen_t)" (declared at line 89 of "/usr/include/arpa/inet.h"). extern const char *inet_ntop(int af, const void *src, char *dst, ^ 1 error detected in the compilation of "inet_pton.c". gmake[4]: *** [inet_pton.o] Error 2 On IRIX, the correct prototype is: extern const char *inet_ntop(int, const void *, char *, socklen_t); Rather than blindly replacing the prototype we detect if a prototype exists and define it only if one does not exist. svn path=/trunk/; revision=7218
2003-02-28Don't offer desegmentation to DCERPC if we have a short or fragmentedGuy Harris1-3/+8
packet. svn path=/trunk/; revision=7217