aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorSebastien Tandel <sebastien@tandel.be>2007-04-20 14:19:20 +0000
committerSebastien Tandel <sebastien@tandel.be>2007-04-20 14:19:20 +0000
commit366716e31d06d78a626b202d3f6b67317b4c379f (patch)
tree87e6ed04b4e9c483d5f34d830234aecb1fde9f25 /epan/dissectors
parent5954b97ac4627db4874a65c1ada2c5dbbf746b37 (diff)
get rid of some unused parameters in process_ssl_payload
svn path=/trunk/; revision=21480
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-ssl.c17
1 files changed, 6 insertions, 11 deletions
diff --git a/epan/dissectors/packet-ssl.c b/epan/dissectors/packet-ssl.c
index f5dc693ea9..a0815a5fa1 100644
--- a/epan/dissectors/packet-ssl.c
+++ b/epan/dissectors/packet-ssl.c
@@ -761,9 +761,7 @@ decrypt_ssl3_record(tvbuff_t *tvb, packet_info *pinfo, guint32 offset,
static void
process_ssl_payload(tvbuff_t *tvb, volatile int offset, packet_info *pinfo,
- proto_tree *root_tree, proto_tree *tree, SslAssociation* association,
- guint32 seq, guint32 nxtseq, gboolean is_ssl_segment,
- SslFlow *flow);
+ proto_tree *tree, SslAssociation* association);
static void
desegment_ssl(tvbuff_t *tvb, packet_info *pinfo, int offset,
@@ -857,8 +855,7 @@ again:
contain a continuation of a higher-level PDU.
Call the normal subdissector.
*/
- process_ssl_payload(tvb, offset, pinfo, root_tree, tree,
- association, 0, 0, FALSE, flow);
+ process_ssl_payload(tvb, offset, pinfo, tree, association);
called_dissector = TRUE;
/* Did the subdissector ask us to desegment some more data
@@ -916,8 +913,7 @@ again:
add_new_data_source(pinfo, next_tvb, "Reassembled SSL");
/* call subdissector */
- process_ssl_payload(next_tvb, 0, pinfo, root_tree,
- tree, association, 0, 0, FALSE, flow);
+ process_ssl_payload(next_tvb, 0, pinfo, tree, association);
called_dissector = TRUE;
/*
@@ -1168,9 +1164,7 @@ again:
static void
process_ssl_payload(tvbuff_t *tvb, volatile int offset, packet_info *pinfo,
- proto_tree *root_tree _U_ , proto_tree *tree, SslAssociation* association,
- guint32 seq _U_, guint32 nxtseq _U_, gboolean is_ssl_segment _U_,
- SslFlow *flow _U_)
+ proto_tree *tree, SslAssociation* association)
{
tvbuff_t *next_tvb;
@@ -1218,7 +1212,8 @@ dissect_ssl_payload(tvbuff_t *tvb, packet_info *pinfo, int offset, proto_tree *t
pinfo->can_desegment = 0;
save_fragmented = pinfo->fragmented;
pinfo->fragmented = TRUE;
- process_ssl_payload(next_tvb, 0, pinfo, proto_tree_get_root(tree), tree, association, appl_data->seq, appl_data->nxtseq, TRUE, appl_data->flow);
+
+ process_ssl_payload(next_tvb, 0, pinfo, tree, association);
pinfo->fragmented = save_fragmented;
}
}