break out some structures into packet-smb2.h so we can start tapping in later

we will do service-response-time   statistics before other inferior products have even noticed a new protocol is in town.




svn path=/trunk/; revision=16463
This commit is contained in:
Ronnie Sahlberg 2005-11-11 03:50:53 +00:00
parent 66296cdf17
commit 078ef72ee4
3 changed files with 52 additions and 17 deletions

View File

@ -853,6 +853,7 @@ DISSECTOR_INCLUDES = \
packet-sip.h \
packet-sll.h \
packet-smb.h \
packet-smb2.h \
packet-smb-browse.h \
packet-smb-common.h \
packet-smb-mailslot.h \

View File

@ -39,6 +39,7 @@
#include <epan/tap.h>
#include <epan/emem.h>
#include "packet-smb2.h"
#include "packet-dcerpc.h"
#include "packet-ntlmssp.h"
#include "packet-windows-common.h"
@ -119,23 +120,6 @@ static const value_string smb2_class_vals[] = {
#define SMB2_FS_INFO_01 0x01
#define SMB2_FS_INFO_05 0x05
typedef struct _smb2_saved_info_t {
guint8 class;
guint8 infolevel;
guint64 seqnum;
char *create_name;
gboolean response; /* is this a response ? */
guint32 frame_req, frame_res;
nstime_t req_time;
} smb2_saved_info_t;
/* structure to keep track of conversations and the hash tables. */
typedef struct _smb2_info_t {
/* these two tables are used to match requests with responses */
GHashTable *unmatched;
GHashTable *matched;
} smb2_info_t;
/* unmatched smb_saved_info structures.
For unmatched smb_saved_info structures we store the smb_saved_info
structure using the SEQNUM field.

View File

@ -0,0 +1,50 @@
/* packet-smb2.h
* Defines for SMB2 packet dissection
*
* $Id: packet-smb2.h 15845 2005-09-17 00:31:15Z guy $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
* Copyright 1998, 1999 Gerald Combs
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __PACKET_SMB2_H__
#define __PACKET_SMB2_H__
/* SMB2 command codes. With MSVC and a
* libethereal.dll, we need a special declaration.
*/
ETH_VAR_IMPORT const value_string smb2_cmd_vals[];
typedef struct _smb2_saved_info_t {
guint8 class;
guint8 infolevel;
guint64 seqnum;
char *create_name;
gboolean response; /* is this a response ? */
guint32 frame_req, frame_res;
nstime_t req_time;
} smb2_saved_info_t;
/* structure to keep track of conversations and the hash tables. */
typedef struct _smb2_info_t {
/* these two tables are used to match requests with responses */
GHashTable *unmatched;
GHashTable *matched;
} smb2_info_t;
#endif