@@ -636,7 +636,7 @@ ZTEST(dhcpv6_tests, test_input_reject_client_initiated_messages)
636636 set_generic_client_options );
637637 zassert_not_null (pkt , "Failed to create fake pkt" );
638638
639- result = net_ipv6_input (pkt , false );
639+ result = net_ipv6_input (pkt );
640640 zassert_equal (result , NET_DROP , "Should've drop the message" );
641641
642642 net_pkt_unref (pkt );
@@ -719,7 +719,7 @@ ZTEST(dhcpv6_tests, test_input_advertise)
719719 set_advertise_options );
720720 zassert_not_null (pkt , "Failed to create pkt" );
721721
722- result = net_ipv6_input (pkt , false );
722+ result = net_ipv6_input (pkt );
723723
724724 switch (state ) {
725725 case NET_DHCPV6_SOLICITING :
@@ -826,7 +826,7 @@ ZTEST(dhcpv6_tests, test_input_reply)
826826 set_reply_options );
827827 zassert_not_null (pkt , "Failed to create pkt" );
828828
829- result = net_ipv6_input (pkt , false );
829+ result = net_ipv6_input (pkt );
830830
831831 switch (state ) {
832832 case NET_DHCPV6_CONFIRMING :
@@ -891,7 +891,7 @@ static void test_solicit_expect_request_send_reply(struct net_if *iface,
891891 set_reply_options );
892892 zassert_not_null (reply , "Failed to create pkt" );
893893
894- result = net_ipv6_input (reply , false );
894+ result = net_ipv6_input (reply );
895895 zassert_equal (result , NET_OK , "Message should've been processed" );
896896
897897 /* Verify client state */
@@ -936,7 +936,7 @@ static void test_solicit_expect_solicit_send_advertise(struct net_if *iface,
936936 set_advertise_options );
937937 zassert_not_null (reply , "Failed to create pkt" );
938938
939- result = net_ipv6_input (reply , false );
939+ result = net_ipv6_input (reply );
940940 zassert_equal (result , NET_OK , "Message should've been processed" );
941941
942942 /* Verify client state */
@@ -993,7 +993,7 @@ static void expect_request_send_reply(struct net_if *iface, struct net_pkt *pkt)
993993 set_reply_options );
994994 zassert_not_null (reply , "Failed to create pkt" );
995995
996- result = net_ipv6_input (reply , false );
996+ result = net_ipv6_input (reply );
997997 zassert_equal (result , NET_OK , "Message should've been processed" );
998998
999999 k_sem_give (& test_ctx .exchange_complete_sem );
@@ -1013,7 +1013,7 @@ static void expect_solicit_send_advertise(struct net_if *iface, struct net_pkt *
10131013 set_advertise_options );
10141014 zassert_not_null (reply , "Failed to create pkt" );
10151015
1016- result = net_ipv6_input (reply , false );
1016+ result = net_ipv6_input (reply );
10171017 zassert_equal (result , NET_OK , "Message should've been processed" );
10181018}
10191019
@@ -1058,7 +1058,7 @@ static void test_confirm_expect_confirm_send_reply(struct net_if *iface,
10581058 set_reply_options );
10591059 zassert_not_null (reply , "Failed to create pkt" );
10601060
1061- result = net_ipv6_input (reply , false );
1061+ result = net_ipv6_input (reply );
10621062 zassert_equal (result , NET_OK , "Message should've been processed" );
10631063
10641064 /* Verify client state */
@@ -1127,7 +1127,7 @@ static void test_rebind_expect_rebind_send_reply(struct net_if *iface,
11271127 set_reply_options );
11281128 zassert_not_null (reply , "Failed to create pkt" );
11291129
1130- result = net_ipv6_input (reply , false );
1130+ result = net_ipv6_input (reply );
11311131 zassert_equal (result , NET_OK , "Message should've been processed" );
11321132
11331133 /* Verify client state */
@@ -1201,7 +1201,7 @@ static void test_renew_expect_renew_send_reply(struct net_if *iface,
12011201 set_reply_options );
12021202 zassert_not_null (reply , "Failed to create pkt" );
12031203
1204- result = net_ipv6_input (reply , false );
1204+ result = net_ipv6_input (reply );
12051205 zassert_equal (result , NET_OK , "Message should've been processed" );
12061206
12071207 /* Verify client state */
0 commit comments