aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-smb-common.h
AgeCommit message (Collapse)AuthorFilesLines
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-01-14Have ip6_to_str() and tvb_ip6_to_str() return const pointers, as theGuy Harris1-1/+1
ip_to_str equivalents do. Don't cast away constness, and don't make it necessary to do so. svn path=/trunk/; revision=54767
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2011-02-23Split get_dns_name() into get_dns_name() and expand_dns_name().Gerald Combs1-1/+1
In dissect_ms_compressed_string() dissect_mscldap_string() simply call expand_dns_name() instead of using duplicate (and insecure) code. This *might* break CLDAP and SMB dissection. If that's the case we should probably revert get_dns_name() and simplify expand_dns_name(). Fixes infinite recursion errors found by joernchen of Phenoelit. svn path=/trunk/; revision=36029
2006-11-24From Stefan Metzmacher:Jaap Keuter1-0/+3
I created two patches: 1.) move the handling of the compressed strings in CLDAP 'netlogon' replies into a generic place. 2.) implement dissection of SMB_NETLOGON cmd's 0x17 and 0x19 svn path=/trunk/; revision=19970
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18196
2005-08-19remove g_malloc() from packet-smb-commonRonnie Sahlberg1-0/+4
svn path=/trunk/; revision=15420
2004-08-03Move a bunch of stuff that's more Windows-related than SMB-related toGuy Harris1-48/+0
"packet-windows-common.[ch]". svn path=/trunk/; revision=11592
2004-08-02Every file that includes "packet-smb-common.h" either includes "smb.h"Guy Harris1-2/+0
or doesn't need anything defined by "smb.h", so don't include it in "packet-smb-common.h". svn path=/trunk/; revision=11591
2004-08-02"dissect_smb_unknown()" isn't some generic routine, it's used only toGuy Harris1-2/+0
dissect unknown netlogon commands; move it to "packet-smb-logon.c". svn path=/trunk/; revision=11589
2004-08-02Don't drag in a huge pile of headers in "packet-smb-common.h"; rely onGuy Harris1-12/+0
the files including it to include what they need. svn path=/trunk/; revision=11588
2004-08-02Move the NTLMv2 blob stuff back into packet-ntlmssp.c - it's moreGuy Harris1-25/+0
NTLMSSP-related than SMB-related, and documents about NTLMSSP talk about it, so it's a little more convenient to keep all that stuff together - and export it through a packet-ntlmssp.h header. svn path=/trunk/; revision=11585
2004-08-02Put in some comments based on information in theGuy Harris1-0/+9
http://davenport.sourceforge.net/ntlm.html document. svn path=/trunk/; revision=11583
2004-07-18Move dissectors to epan/dissectors directory.Gilbert Ramirez1-0/+121
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. svn path=/trunk/; revision=11410