# This file was automatically generated by bifcl from /Users/jon/tmp/bro-2.5.5/src/analyzer/protocol/smb/smb2_com_tree_connect.bif (plugin mode). ## Generated for :abbr:`SMB (Server Message Block)`/:abbr:`CIFS (Common Internet File System)` ## version 2 requests of type *tree_connect*. This is sent by a client to request access to a ## particular share on the server. ## ## For more information, see MS-SMB2:2.2.9 ## ## c: The connection. ## ## hdr: The parsed header of the :abbr:`SMB (Server Message Block)` version 2 message. ## ## path: Path of the requested tree. ## ## .. bro:see:: smb2_message smb2_tree_connect_response export { global smb2_tree_connect_request: event(c: connection , hdr: SMB2::Header , path: string ); ## Generated for :abbr:`SMB (Server Message Block)`/:abbr:`CIFS (Common Internet File System)` ## version 2 responses of type *tree_connect*. This is sent by the server when a *tree_connect* ## request is successfully processed by the server. ## ## For more information, see MS-SMB2:2.2.10 ## ## c: The connection. ## ## hdr: The parsed header of the :abbr:`SMB (Server Message Block)` version 2 message. ## ## response: A record with more information related to the response. ## ## .. bro:see:: smb2_message smb2_tree_connect_request global smb2_tree_connect_response: event(c: connection , hdr: SMB2::Header , response: SMB2::TreeConnectResponse ); } # end of export section module GLOBAL;