summaryrefslogtreecommitdiff
path: root/src/gateway
diff options
context:
space:
mode:
Diffstat (limited to 'src/gateway')
-rw-r--r--src/gateway/dlt_gateway.c17
-rw-r--r--src/gateway/dlt_gateway.h7
2 files changed, 14 insertions, 10 deletions
diff --git a/src/gateway/dlt_gateway.c b/src/gateway/dlt_gateway.c
index 1dde171..1188e35 100644
--- a/src/gateway/dlt_gateway.c
+++ b/src/gateway/dlt_gateway.c
@@ -499,10 +499,10 @@ DLT_STATIC DltGatewayConf configuration_entries[GW_CONF_COUNT] = {
/**
* Check if gateway connection configuration parameter is valid.
*
- * @param g DltGateway
- * @param c DltGatewayConnection
- * @param key DltGatwayConnection property
- * @param value specified property value from configuration file
+ * @param gateway DltGateway
+ * @param con DltGatewayConnection
+ * @param ctype DltGatwayConnection property
+ * @param value specified property value from configuration file
* @return Value from DltReturnValue enum
*/
DLT_STATIC DltReturnValue dlt_gateway_check_param(DltGateway *gateway,
@@ -524,9 +524,9 @@ DLT_STATIC DltReturnValue dlt_gateway_check_param(DltGateway *gateway,
/**
* Store gateway connection in internal data structure
*
- * @param g DltGatway
- * @param tmp DltGatewayConnection
- * @param verbose verbose flag
+ * @param gateway DltGatway
+ * @param tmp DltGatewayConnection
+ * @param verbose verbose flag
* @return 0 on success, -1 otherwise
*/
int dlt_gateway_store_connection(DltGateway *gateway,
@@ -947,7 +947,7 @@ DltReceiver *dlt_gateway_get_connection_receiver(DltGateway *gateway, int fd)
* Parse GET_LOG_INFO
*
* @param daemon DltDaemon
- * @param daemon_local DltDaemonLocal
+ * @param ecu Ecu ID
* @param msg DltMessage
* @param req 1 if requested from gateway, 0 otherwise
* @param verbose verbose flag
@@ -1074,6 +1074,7 @@ DLT_STATIC DltReturnValue dlt_gateway_parse_get_log_info(DltDaemon *daemon,
*
* @param daemon DltDaemon
* @param daemon_local DltDaemonLocal
+ * @param ecu Ecu ID
* @param msg DltMessage
* @param verbose verbose flag
* @return 0 on success, -1 otherwise
diff --git a/src/gateway/dlt_gateway.h b/src/gateway/dlt_gateway.h
index 553b9b1..8c0e39a 100644
--- a/src/gateway/dlt_gateway.h
+++ b/src/gateway/dlt_gateway.h
@@ -123,7 +123,8 @@ int dlt_gateway_process_passive_node_messages(DltDaemon *daemon,
* Process gateway timer
*
* @param daemon DltDaemon
- * @param daemon_loocal DltDaemonLocal
+ * @param daemon_local DltDaemonLocal
+ * @param rec DltReceiver
* @param verbose verbose flag
* @return 0 on success, -1 otherwise
*/
@@ -152,8 +153,10 @@ int dlt_gateway_forward_control_message(DltGateway *g,
* Process on demand connect/disconnect of passive nodes
*
* @param g DltGateway
+ * @param daemon_local DltDaemonLocal
* @param node_id Passive Node identifier
* @param connection_status Connection status
+ * @param verbose verbose flag
* @return 0 on success, -1 otherwise
*/
int dlt_gateway_process_on_demand_request(DltGateway *g,
@@ -167,7 +170,7 @@ int dlt_gateway_process_on_demand_request(DltGateway *g,
*
* @param con DltGatewayConnection
* @param control_msg DltPassiveControlMessage
- * @param msg DltMessage
+ * @param data DltMessage
* @param verbose verbose flag
* @return 0 on success, -1 otherwise
*/