]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/netapi.git/blobdiff - ti/runtime/netapi/test/net_test_router.c
This commit adds the following:
[keystone-rtos/netapi.git] / ti / runtime / netapi / test / net_test_router.c
index 9ba8d5ea3ee56b24180849775e64940a7a9b92f0..31793e93cf2e59c400d076c42c06d70ee6ff4dc6 100755 (executable)
@@ -248,7 +248,7 @@ void open_pktio_tx_channels()
             PKTIO_CFG_T cfg;
             cfg.fast_path_cfg.fp_send_option = PKTIO_FP_NO_CRYPTO_NO_CKSUM_PORT;
             cfg.fast_path_cfg.txPktInfo= &txPktInfoNoCrypto;
-            //netapi_pktioControl(netcp_tx_chan_no_crypto, NULL, &cfg, &control, &err);
+            netapi_pktioControl(netcp_tx_chan_no_crypto, NULL, &cfg, &control, &err);
         }
     }
     /* open netcp default  TX for ESP packets */
@@ -267,7 +267,7 @@ void open_pktio_tx_channels()
             PKTIO_CFG_T cfg;
             cfg.fast_path_cfg.fp_send_option = PKTIO_FP_ESP_PORT;
             cfg.fast_path_cfg.txPktInfo= &txPktInfoESP;
-            //netapi_pktioControl(netcp_tx_chan_esp, NULL, &cfg, &control, &err);
+            netapi_pktioControl(netcp_tx_chan_esp, NULL, &cfg, &control, &err);
         }
     }
 
@@ -287,7 +287,7 @@ void open_pktio_tx_channels()
             PKTIO_CFG_T cfg;
             cfg.fast_path_cfg.fp_send_option = PKTIO_FP_AH_PORT;
             cfg.fast_path_cfg.txPktInfo= &txPktInfoAH;
-            //netapi_pktioControl(netcp_tx_chan_ah, NULL, &cfg, &control, &err);
+            netapi_pktioControl(netcp_tx_chan_ah, NULL, &cfg, &control, &err);
         }
     }
 }