@@ -345,10 +345,10 @@ static void gtp_destroy_plugin_data(access_plugin_t *p) {
345345}
346346
347347static void gtp_uncouple_parsed_data (access_plugin_t * p ) {
348-
348+ ( void ) p ;
349349}
350350
351- static void gtp_destroy_parsed_data (access_plugin_t * p , void * parsed ) {
351+ static void gtp_destroy_parsed_data (access_plugin_t * p UNUSED , void * parsed ) {
352352
353353 gtp_parsed_t * gparsed = (gtp_parsed_t * )parsed ;
354354
@@ -1332,7 +1332,7 @@ static inline access_session_t *find_matched_session(access_plugin_t *p,
13321332}
13331333
13341334static access_session_t * gtp_update_session_state (access_plugin_t * p ,
1335- void * parsed , void * plugindata , access_session_t * * sesslist ,
1335+ void * parsed , void * plugindata UNUSED , access_session_t * * sesslist ,
13361336 session_state_t * oldstate , session_state_t * newstate ,
13371337 access_action_t * action ) {
13381338
@@ -1819,9 +1819,9 @@ static int gtp_create_context_activation_iri(gtp_parsed_t *gparsed,
18191819 return 0 ;
18201820}
18211821
1822- static int gtp_generate_iri_data (access_plugin_t * p , void * parseddata ,
1822+ static int gtp_generate_iri_data (access_plugin_t * p UNUSED , void * parseddata ,
18231823 etsili_generic_t * * params , etsili_iri_type_t * iritype ,
1824- etsili_generic_freelist_t * freelist , int iteration ) {
1824+ etsili_generic_freelist_t * freelist , int iteration UNUSED ) {
18251825
18261826 gtp_parsed_t * gparsed = (gtp_parsed_t * )parseddata ;
18271827
@@ -1893,7 +1893,7 @@ static int gtp_generate_iri_from_session(access_plugin_t *p,
18931893 return 0 ;
18941894}
18951895
1896- static uint8_t * gtp_get_ip_contents (access_plugin_t * p , void * parseddata ,
1896+ static uint8_t * gtp_get_ip_contents (access_plugin_t * p UNUSED , void * parseddata ,
18971897 uint16_t * iplen , int iteration ) {
18981898
18991899 gtp_parsed_t * gparsed = (gtp_parsed_t * )parseddata ;
@@ -1925,7 +1925,7 @@ static uint8_t *gtp_get_ip_contents(access_plugin_t *p, void *parseddata,
19251925
19261926}
19271927
1928- static void gtp_destroy_session_data (access_plugin_t * p ,
1928+ static void gtp_destroy_session_data (access_plugin_t * p UNUSED ,
19291929 access_session_t * sess ) {
19301930
19311931 if (sess -> sessionid ) {
@@ -1934,7 +1934,8 @@ static void gtp_destroy_session_data(access_plugin_t *p,
19341934
19351935}
19361936
1937- static uint32_t gtp_get_packet_sequence (access_plugin_t * p , void * parseddata ) {
1937+ static uint32_t gtp_get_packet_sequence (access_plugin_t * p UNUSED ,
1938+ void * parseddata ) {
19381939
19391940 gtp_parsed_t * gparsed = (gtp_parsed_t * )parseddata ;
19401941
0 commit comments