iuup_cn_node.c: use 0x70 instead of 0xf0 in AMR hdr

in the AMR header first 4 bits is CMR (codec mode request). "7" means
AMR 12.2k. And "f" means "no mode request".
See RFC4867 Section 4.3.1.
diff --git a/tests/iuup/iuup_test.c b/tests/iuup/iuup_test.c
index 6144ac8..6184161 100644
--- a/tests/iuup/iuup_test.c
+++ b/tests/iuup/iuup_test.c
@@ -111,14 +111,14 @@
 #define RTP_PAYLOAD "6cfb23bc46d18180c3e5ffe040045600005a7d35b625b80005fff03214ced0"
 	printf("\nReceive payload encapsulated in IuUP. Expecting rx_payload() of just RTP packet\n");
 	printf("i.e. should strip away " IUUP_HEADER "\n");
-	expect_rx_payload = RTP_HEADER "f03c" RTP_PAYLOAD;
+	expect_rx_payload = RTP_HEADER "703c" RTP_PAYLOAD;
 	rx_pdu(cn,
 	       msgb_from_hex("IuUP-Data",
 			     RTP_HEADER IUUP_HEADER RTP_PAYLOAD));
 
 	printf("\nReceive payload encapsulated in IuUP. Expecting rx_payload() of just RTP packet\n");
 	printf("i.e. should strip away " "0401479e" "\n");
-	expect_rx_payload = RTP_HEADER "f044" "26e9b851ee";
+	expect_rx_payload = RTP_HEADER "7044" "26e9b851ee";
 	rx_pdu(cn,
 	       msgb_from_hex("IuUP-Data",
 			     RTP_HEADER "0401479e" "26e9b851ee"));
@@ -126,18 +126,18 @@
 	printf("\nTransmit RTP. Expecting tx_msg() with inserted IuUP header\n");
 	expect_tx_msg = RTP_HEADER "000002b3" RTP_PAYLOAD;
 	tx_payload(cn,
-		   msgb_from_hex("RTP data", RTP_HEADER "f03c" RTP_PAYLOAD));
+		   msgb_from_hex("RTP data", RTP_HEADER "703c" RTP_PAYLOAD));
 
 	printf("\nMore RTP, each time the Frame Nr advances, causing a new header CRC.\n");
 	expect_tx_msg = RTP_HEADER "0100e2b3" RTP_PAYLOAD;
 	tx_payload(cn,
-		   msgb_from_hex("RTP data", RTP_HEADER "f03c" RTP_PAYLOAD));
+		   msgb_from_hex("RTP data", RTP_HEADER "703c" RTP_PAYLOAD));
 	expect_tx_msg = RTP_HEADER "02007eb3" RTP_PAYLOAD;
 	tx_payload(cn,
-		   msgb_from_hex("RTP data", RTP_HEADER "f03c" RTP_PAYLOAD));
+		   msgb_from_hex("RTP data", RTP_HEADER "703c" RTP_PAYLOAD));
 	expect_tx_msg = RTP_HEADER "03009eb3" RTP_PAYLOAD;
 	tx_payload(cn,
-		   msgb_from_hex("RTP data", RTP_HEADER "f03c" RTP_PAYLOAD));
+		   msgb_from_hex("RTP data", RTP_HEADER "703c" RTP_PAYLOAD));
 
 	printf("All done.\n");
 }