aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2004-03-22Note that GTK+ 2.4 doesn't work, and indicate why.Guy Harris1-3/+31
Enumerate the dependencies for GLib 2.4/GTK+ 2.4, and indicate that GNU gettext is also required, even though it's not in the set of dependencies on the GTK+ site (after all, the ENTIRE WORLD runs Linux, RIGHT?). Give a (partial) order for the dependencies. Note some issues with building and installing the JPEG and libpng libraries. svn path=/trunk/; revision=10443
2004-03-22* X11 dissector:Laurent Deniel3-56/+653
- in decoding of replies: 0 is not an unknown opcode, it means that the request was unseen or that the opcode of the request is unknown (e.g. due to unseen / undecoded QueryExtension replies) - add special processing for QueryExtension requests & replies in order to store new opcodes in a value_string of opcodes saved per conversation - try to resynchronize sequence number once at first reply if no initial connection request was seen - add decoding of SendEvent request - add decoding of many replies (AllocColor, GetInputFocus, GetGeometry, GetPointerControl, GetScreenSaver, GetSelectionOwner, GrabKeyboard, GrabPointer, InternAtom, ListProperties, LookupColor, QueryBestSize, QueryKeymap, QueryPointer, TranslateCoordinates) - fix decoding of EnterNotify / LeaveNotify events - add decoding of most events (FocusIn, FocusOut, Expose, GraphicsExpose, NoExpose, VisibilityNotify, CreateNotify, DestroyNotify, UnmapNotify, MapNotify, MapRequest, ReparentNotify, ConfigureNotify, GravityNotify, ResizeRequest, CirculateNotify, CirculateRequest, PropertyNotify, SelectionClear, SelectionRequest, SelectionNotify, ColormapNotify, ClientMessage) - miscellaneous changes & code cleaning svn path=/trunk/; revision=10442
2004-03-22!ifdef-ize out a GTKWimp text section.Gerald Combs1-1/+3
svn path=/trunk/; revision=10441
2004-03-22Add Makefile.common to the distribution.Gerald Combs1-1/+2
svn path=/trunk/; revision=10440
2004-03-22From Lars Roland: Fix a couple of MSVC build problems.Gerald Combs2-28/+25
svn path=/trunk/; revision=10439
2004-03-22From Tomas Kukosa: supportedTunnelledProtocols in EndpointType is aGuy Harris1-2/+17
SEQUENCE OF TunnelledProtocol, not just a TunnelledProtocol. svn path=/trunk/; revision=10438
2004-03-22Make the strings in the NAS-Port-Type AVP match the text inGuy Harris1-6/+6
http://www.ietf.org/internet-drafts/draft-ietf-aaa-diameter-nasreq-14.txt. svn path=/trunk/; revision=10437
2004-03-22Bump the version up to 0.10.3.Gerald Combs3-7/+7
svn path=/trunk/; revision=10436
2004-03-22Back out previous accidentally-committed change.Gerald Combs1-2/+1
svn path=/trunk/; revision=10435
2004-03-22Handle null RADIUS attribute information without crashing. Found byGerald Combs3-5/+10
Jonathan Heusser. svn path=/trunk/; revision=10434
2004-03-22Fix a typo.Guy Harris1-2/+2
svn path=/trunk/; revision=10433
2004-03-21The CDMA2000 A11 dissector doesn't put anything into the protocol treeGuy Harris1-6/+13
for a packet with an unknown type, so we make it just reject those packets so other dissectors can claim them. svn path=/trunk/; revision=10432
2004-03-21Clean up white space.Guy Harris1-15/+11
Just use "proto_tree_add_item()" to put the session ID into the protocol string. svn path=/trunk/; revision=10431
2004-03-21From Anders Broman: fix the value strings for decoding of AVP values,Guy Harris1-13/+45
add the T flag, make the result code and session ID named fields, and add some more field types. svn path=/trunk/; revision=10430
2004-03-21From Anders Broman: add some more AVP's, result codes, etc..Guy Harris1-20/+318
svn path=/trunk/; revision=10429
2004-03-21Update to note that the 10.3.3 Software Update will probably alsoGuy Harris1-8/+17
install a new libpcap shared library but not install new libpcap headers. svn path=/trunk/; revision=10428
2004-03-21Prefix ENUM types ip IPDC_ in order to prevent type clashes with windowsJörg Mayer2-124/+124
includes (MSVC). Proposed fix by Ulf Lamping. svn path=/trunk/; revision=10427
2004-03-21Update to include the libpcap problems. Using excerpts from a mailexchangeJörg Mayer1-1/+14
between Guy Harris and Peter ("downtime"). svn path=/trunk/; revision=10426
2004-03-21add support for dissecting multicast sync packets for Linux IPVSNathan Neulinger3-1/+356
svn path=/trunk/; revision=10425
2004-03-20From Jelmer Vernooij: add support for SNAC(x,1), SNAC(1,2-6) andGuy Harris1-194/+281
SNAC(1,0x13). svn path=/trunk/; revision=10424
2004-03-20If we can't decrypt the user password, display it as hex data, not asGuy Harris1-40/+39
text. Make "rdconvertbufftostr()" use "isprint()" to determine whether to display a character as itself or as an escape. Move our redefinition of "isprint()" above "rdconvertbufftostr()" so that we make the "is it printable?" decision appropriately. svn path=/trunk/; revision=10423
2004-03-20Make a separate display type for the user password, rather than havingGuy Harris1-8/+8
the code to handle RADIUS_STRING know that User Password has an AVP type value of 2. As only the User Password field has that display type, we don't have to check whether we're handling vendor-specific VSAs. svn path=/trunk/; revision=10422
2004-03-20Remove trailing commaJörg Mayer1-2/+2
svn path=/trunk/; revision=10421
2004-03-20Workaround for (at least) some RedHat platforms:Jörg Mayer2-2/+22
Add -lresolv in case it's missing but required by the heimdal libs. svn path=/trunk/; revision=10420
2004-03-20Make "timestamp_type" static, as all access to it should be through theGuy Harris1-2/+2
routines in this file. svn path=/trunk/; revision=10419
2004-03-20"tmp_tag_text" can hold a string of up to 255 characters, which means itGuy Harris1-9/+13
needs to be 256 characters long to hold a maximum-length string plus a terminating '\0', as noted by Stefan Esser. Don't bother putting in the null terminator at the end in the case where we're putting an IP address or address/port into "tmp_tag_text" - "sprintf()" does that for you. In the case where it's an IP address and port, do it all in one sprintf call - I don't think there's a guarantee that sprintf(tmp_tag_text, "%s:%u", tmp_tag_text, ...) works, although it could work. Also, handle the case where the length is neither 4 (IP address) nor 6 (IP address/port). svn path=/trunk/; revision=10418
2004-03-20Don't use fixed-length buffers for strings - there's no absolute stringGuy Harris1-28/+50
length. svn path=/trunk/; revision=10417
2004-03-20In "dissect_tcap_tid()", check that the length of the transaction ID isGuy Harris1-1/+16
<= 4, so we don't copy more than 4 bytes to a 4-byte integer. svn path=/trunk/; revision=10416
2004-03-20From Tomas Kukosa:Guy Harris4-20/+24
add Expand Tree to the View menu; make the Expand Tree context menu active iff the currently-selected item has a subtree; fix the GTK2 code for Expand Tree. svn path=/trunk/; revision=10415
2004-03-20From Jelmer Vernooij: add support for some more SNACs.Guy Harris3-6/+124
svn path=/trunk/; revision=10414
2004-03-20From Ronnie Sahlberg: Windows XP SP1 appears to send the OS and LANMANGuy Harris1-4/+27
fields over the wire in ASCII in SessionSetupandX messages even though the "Unicode strings" flag is set. svn path=/trunk/; revision=10413
2004-03-20Updates from Josh Bailey and Ruud Linders.Guy Harris2-432/+481
svn path=/trunk/; revision=10412
2004-03-19Fixed a typo: sctp.verfication_tag -> sctp.verification_tagMichael Tüxen1-2/+2
svn path=/trunk/; revision=10411
2004-03-19Use "E.164", not "E164".Guy Harris1-5/+5
In the field names, use the filter name of the protocol - "e164" - rather than "E164". svn path=/trunk/; revision=10410
2004-03-19From Michael Lum:Guy Harris9-633/+1570
GSM A facility element decoding; make TCAP dissector export routines for use by various GSM dissectors; make GSM MAP dissector use exported TCAP routines/defines; GSM Supplementary Services support. svn path=/trunk/; revision=10409
2004-03-19Update to reflect current reality.Guy Harris1-18/+13
svn path=/trunk/; revision=10408
2004-03-19From Tomas Kukosa: add a new "Expand Tree" context menu item, whichGuy Harris3-4/+43
expands the selected item and all items below it. svn path=/trunk/; revision=10407
2004-03-19From Ronnie Sahlberg:Guy Harris1-27/+92
make tcp_dissect_pdus() understand how to skip to the next PDU; make the skip-to-the-next-PDU code stop attempting to decode segments that are known to be completely within an already seen PDU. svn path=/trunk/; revision=10406
2004-03-19From Anders Broman: put E.164 numbers into the protocol tree using theGuy Harris1-17/+28
E.164 routines. svn path=/trunk/; revision=10405
2004-03-19In the read routine, set the 802.11 pseudo-header forGuy Harris1-1/+16
WTAP_ENCAP_PRISM_HEADER, WTAP_ENCAP_IEEE_802_11_WLAN_BSD, and WTAP_ENCAP_IEEE_802_11_WLAN_AVS. In the seek_read routine, set it for all 802.11 types. svn path=/trunk/; revision=10404
2004-03-18From Lars Roland: Move timestamp_type into libethereal and provide accessorOlivier Biot1-0/+43
methods for getting and setting the timestamp type. This is a move towards a real libethereal shared library. svn path=/trunk/; revision=10403
2004-03-18From Lars Roland: Move timestamp_type into libethereal and provide accessorOlivier Biot11-42/+45
methods for getting and setting the timestamp type. This is a move towards a real libethereal shared library. svn path=/trunk/; revision=10402
2004-03-18Call proto_register_field_array() after proto_register_protocol(), and notGerald Combs1-5/+5
before. svn path=/trunk/; revision=10401
2004-03-18From Tomas Kukosa:Guy Harris3-24/+42
improve the Info column text for reassembled messages; register subdissectors for dissecting Q.931 IEs and make the ISUP dissector call the codeset 0 IE subdissector through a handle. svn path=/trunk/; revision=10400
2004-03-18From Josh Bailey: IPDC support.Guy Harris6-2/+1000
svn path=/trunk/; revision=10399
2004-03-17* Protocol Hierarchy Statistics:Laurent Deniel3-38/+101
- store times of first and last packets in ph_stats_t - add bandwidth columns in GUI - miscellaneous code cleaning svn path=/trunk/; revision=10398
2004-03-17Correctly spell REAMDE.macosJörg Mayer1-2/+2
svn path=/trunk/; revision=10397
2004-03-17Enclose WV-CSP 1.2 token mappings in conditional compile comments. Once theOlivier Biot1-1/+3
WV-CSP 1.2 specifications will be corrected and in approved state, we can get rid of those comments (#ifdef ... #endif). svn path=/trunk/; revision=10396
2004-03-17Experimental Heimdal Kerberos detection.Jörg Mayer5-5/+321
As this is experimental and does not yet work reliably this feature is off by default. Enable it by using --with-krb5 during configure. Please do not yet make use of this feature (i.e. please do not *use* the defines provided by this option), until it has received further testing and fixing. Please run and check what the configure says. svn path=/trunk/; revision=10395
2004-03-17Sync with the sourcesJörg Mayer3-9/+146
svn path=/trunk/; revision=10394