aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/opcua/opcua_servicetable.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/opcua/opcua_servicetable.c')
-rw-r--r--plugins/opcua/opcua_servicetable.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/opcua/opcua_servicetable.c b/plugins/opcua/opcua_servicetable.c
index 1f1150747c..a839046dc5 100644
--- a/plugins/opcua/opcua_servicetable.c
+++ b/plugins/opcua/opcua_servicetable.c
@@ -1,5 +1,5 @@
/******************************************************************************
-** Copyright (C) 2006-2009 ascolab GmbH. All Rights Reserved.
+** Copyright (C) 2006-2014 ascolab GmbH. All Rights Reserved.
** Web: http://www.ascolab.com
**
** This program is free software; you can redistribute it and/or
@@ -14,7 +14,7 @@
**
** Description: Service table and service dispatcher.
**
-** This file was autogenerated on 12.02.2013.
+** This file was autogenerated on 16.10.2014.
** DON'T MODIFY THIS FILE!
**
******************************************************************************/
@@ -196,7 +196,7 @@ const value_string g_requesttypes[] = {
};
/** Dispatch all services to a special parser function. */
-void dispatchService(proto_tree *tree, tvbuff_t *tvb, gint *pOffset, int ServiceId)
+void dispatchService(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo, gint *pOffset, int ServiceId)
{
int indx = 0;
@@ -204,7 +204,7 @@ void dispatchService(proto_tree *tree, tvbuff_t *tvb, gint *pOffset, int Service
{
if (g_arParserTable[indx].iRequestId == ServiceId)
{
- (*g_arParserTable[indx].pParser)(tree, tvb, pOffset);
+ (*g_arParserTable[indx].pParser)(tree, tvb, pinfo, pOffset);
break;
}
indx++;