aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2003-04-29Tiny updateJörg Mayer2-4/+6
svn path=/trunk/; revision=7606
2003-04-29This fixes up the decode at the expense of adding some junk fields ...Richard Sharpe1-2/+17
I can send a capture to anyone who wants ... svn path=/trunk/; revision=7605
2003-04-29Start dissecting, but the IDL looks wrong. It looks like a couple of theRichard Sharpe1-15/+81
out parameters were included, like maybe the bufptr, and one of the other fields that is a LPDWORD got included ... and prefmaxlen is further down ... svn path=/trunk/; revision=7604
2003-04-29Add a "proto_item_set_end()" routine that sets the length of an itemGuy Harris8-16/+52
given a tvbuff/offset pair referring to the byte past the end of the item. Use it in one place in the SMB dissector (there are plenty of other places where it could be used as well). svn path=/trunk/; revision=7603
2003-04-29Confirm a simple theory. Write small VC++ program to call NetWkstaEnumUsersRichard Sharpe2-6/+9
and watch for the RPC to be sent. Grab RPC OpNum from trace, and increase our knowledge of these RPCs. Next to code up the dissectors, and then on to NetWkstaSetInfo etc. MSDN has lots of info ... svn path=/trunk/; revision=7602
2003-04-29Don't export "osinl_subdissector_table" or "ppp_subdissector_table" -Guy Harris6-19/+16
have other dissectors that use them fetch them with "find_dissector_table()". svn path=/trunk/; revision=7601
2003-04-29Don't export "ip_dissector_table" explicitly; now that we haveGuy Harris4-11/+13
"find_dissector_table()", have the IPv6 and IPSEC dissectors fetch the IP dissector table by name. svn path=/trunk/; revision=7600
2003-04-29Typo fix, from Laurent Rabret.Guy Harris1-2/+2
svn path=/trunk/; revision=7599
2003-04-29Fix display bug for interval. Interval was displayed as seconds and not inRonnie Sahlberg1-3/+3
ms units. Fix conversion bug when converting from float to integer. svn path=/trunk/; revision=7598
2003-04-29iSNS support, from Garth Bushell.Guy Harris5-2/+1286
svn path=/trunk/; revision=7597
2003-04-29Add entries for March.Gerald Combs2-2/+101
svn path=/trunk/; revision=7596
2003-04-29From Jean-Baptiste Marchand: fix typo in value_string table for LDAPGuy Harris1-2/+2
message types. svn path=/trunk/; revision=7595
2003-04-28From Yaniv Kaul - remove the check for the SafeNet VID, as that's notGuy Harris1-6/+1
SafeNet's VID. svn path=/trunk/; revision=7594
2003-04-28From Yaniv Kaul: check a reserved field against 0 (the RFC specifies itGuy Harris1-1/+10
must be zero), and displays an indication of whether it's zero or not. svn path=/trunk/; revision=7593
2003-04-28dissect_nt_access_mask() sometimes ami is NULL.Ronnie Sahlberg1-3/+3
check that it is non-NULL before we dereference it. svn path=/trunk/; revision=7592
2003-04-28Move the specific rights dissection function and name into a structureTim Potter6-52/+87
instead of passing them around as separate parameters. This is a prelude to adding generic and standard mapping to the access mask dissection. svn path=/trunk/; revision=7591
2003-04-28Fix several buffer and integer overflow issues discovered by Timo Sirainen.Gerald Combs3-26/+43
tvbuff.c: Lots of existing code assumes that you can safely do the following: #define MAX_BUF 64 guint8 *buf[MAX_BUF]; ... tvb_get_nstringz0 (tvb, offset, MAX_BUF, buf, &bytes_copied); In reality, tvb_get_nstringz*() can potentially write one byte past "buf". Modify _tvb_get_nstringz() not to do that. packet-ppp.c: Check for a valid BAP suboption length. packet-mount.c: Fix a possible integer overflow in dissect_group(). svn path=/trunk/; revision=7590
2003-04-28From Matthijs Melchior: fix "asn1_bits_decode()", and make its API moreGuy Harris2-14/+16
closely resemble that of other decode routines. svn path=/trunk/; revision=7589
2003-04-27Note some weirdness seen in some captures, where the direction flag inGuy Harris1-1/+8
the SMB isn't set on replies. svn path=/trunk/; revision=7588
2003-04-27From Lars Roland: document the "mgcp,rtd" tap for Ethereal, and improveGuy Harris2-6/+35
the documentation for that tap for Tethereal. svn path=/trunk/; revision=7587
2003-04-27From Lars Roland: add routines to use when creating statistics windowsGuy Harris3-16/+130
(at least with GTK+ 1.2[.x]), and make the MGCP statistics routine use them. The routines use a GtkCList and make it scrollable. svn path=/trunk/; revision=7586
2003-04-27Use "tvb_format_text()" to format the string in "cb_str_postprocess()",Guy Harris1-2/+2
to avoid problems with non-printable characters. svn path=/trunk/; revision=7585
2003-04-27Replace some unchecked malloc calls by g_malloc.Laurent Deniel6-24/+22
svn path=/trunk/; revision=7584
2003-04-27Update some more names ...Richard Sharpe1-5/+5
svn path=/trunk/; revision=7583
2003-04-27Newer build tools generate the following warning:Jörg Mayer1-2/+2
Makefile.am:99: `YFLAGS' is a user variable, you should not override it; Makefile.am:99: use `AM_YFLAGS' instead. Fix it in the proposed way. svn path=/trunk/; revision=7582
2003-04-27Add support for level 102 info ...Richard Sharpe1-1/+51
svn path=/trunk/; revision=7581
2003-04-27Let's have the correct name for this sucker.Richard Sharpe1-3/+3
svn path=/trunk/; revision=7580
2003-04-27Add mode info levels for NetWkstaGetInfo. Praise be for MSDN :-)Richard Sharpe1-1/+49
svn path=/trunk/; revision=7579
2003-04-27Added decoding of EnumServicesStatus request packetsRonnie Sahlberg2-2/+89
svn path=/trunk/; revision=7578
2003-04-27Added function QueryServiceLockStatusRonnie Sahlberg2-17/+92
svn path=/trunk/; revision=7577
2003-04-27Call dissect_nt_status() instead of dissect_ndr_uint32() when dissectingTim Potter2-120/+124
return status codes. svn path=/trunk/; revision=7576
2003-04-27Added decoding of the two functions LockServiceDatabase and ↵Ronnie Sahlberg2-6/+94
UnlockServiceDatabase svn path=/trunk/; revision=7575
2003-04-27Added dissectors for the functions : OpenSCManager and CloseServiceHandleRonnie Sahlberg2-8/+219
svn path=/trunk/; revision=7574
2003-04-27Clean up the example for the "-m" flag.Guy Harris1-1/+3
svn path=/trunk/; revision=7573
2003-04-27Not all strings in MS interfaces are unicode.Ronnie Sahlberg7-20/+82
Rename cb_str_postprocess which handles unicode strings to cb_wstr_postprocess. Add cb_str_postprocess which handles ASCII strings svn path=/trunk/; revision=7572
2003-04-27From Matthijs Melchior:Guy Harris4-28/+157
- added option -m to set maximum packet length - added option -T to generate TCP headers - UDP headers now have a correct checksum - default capture timestamp is current time, usec field counts packets - UDP and TCP headers are mutually exclusive - changed etherenet addresses, now sends from 1 -> 2 .... svn path=/trunk/; revision=7571
2003-04-27Fix a typo.Guy Harris1-2/+2
svn path=/trunk/; revision=7570
2003-04-26Put the new "-z" examples in boldface. (pod2man warns you about that.)Guy Harris1-18/+27
Wrap some paragraphs to 80 columns. svn path=/trunk/; revision=7569
2003-04-26Finish the dissection of what we know here. My, Ronnie has made this easy.Richard Sharpe2-5/+100
svn path=/trunk/; revision=7568
2003-04-26New DCERPC pipe for Windows service control. Implemented only stubs so far.Tim Potter4-2/+160
svn path=/trunk/; revision=7567
2003-04-26Begin to parse wkssvc stuff ...Richard Sharpe1-2/+47
svn path=/trunk/; revision=7566
2003-04-25Show the URL of the I-D giving information on Kerberos-over-TCP.Guy Harris1-1/+5
svn path=/trunk/; revision=7565
2003-04-25From Tony Schene: Kerberos-over-TCP support.Guy Harris3-29/+170
svn path=/trunk/; revision=7564
2003-04-25From Tony Schene: after freeing saved authentication mechanism stringsGuy Harris1-1/+3
in the "auth_info_items" list, and free all the items in that list, we need to null out the pointer to that list to indicate that it's been emptied out. svn path=/trunk/; revision=7563
2003-04-25From Tony Schene: initial stub Kerberos kadmin support.Guy Harris5-2/+155
svn path=/trunk/; revision=7562
2003-04-25From Lars Roland:Guy Harris8-187/+272
Filter dialog for the MGCP statistics tap. Routines for building GUI table displays for statistics taps. Use the timestats.c routines in the SMB statistics tap. svn path=/trunk/; revision=7561
2003-04-25From Greg Morris:Guy Harris2-34/+105
1. Some NCP's that displayed the file/directory path in the summary window would display blank lines on Windows based machines. This was due to unicode or non-displayable characters contained in the character string being added to the column data. I made a change to format/strip out non-displayable characters prior to adding to the column data. 2. Moved ncp_req_hash_value struct to packet-ncp-int.h so that I can use it within a future dissector (NMAS). Clean up white space. svn path=/trunk/; revision=7560
2003-04-25From Greg Morris:Guy Harris1-18/+31
NCP 123,62 did not display value for the set command. Set default value to guint32. Add some stuff for the Novell Modular Authentication Service. svn path=/trunk/; revision=7559
2003-04-25Obscure email addresses and update entries.Gerald Combs3-10/+42
svn path=/trunk/; revision=7558
2003-04-25Initialize hf_bgp_cluster_list.Gerald Combs1-1/+4
svn path=/trunk/; revision=7557