コード例 #1
0
ファイル: packet-fcip.c プロジェクト: ajitlakhwani/wireshark
/* This is called for those sessions where we have explicitly said
   this to be FCIP using "Decode As..."
   In this case we will not check the port number for sanity and just
   do as the user said.
*/
static void
dissect_fcip_handle(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
    dissect_fcip (tvb, pinfo, tree, FALSE);
}
コード例 #2
0
static gboolean
dissect_fcip_heur (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
    return (dissect_fcip (tvb, pinfo, tree, TRUE));
}