aboutsummaryrefslogtreecommitdiffstats
path: root/test/gtest/test_tle_udp_destroy.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/gtest/test_tle_udp_destroy.h')
-rw-r--r--test/gtest/test_tle_udp_destroy.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/gtest/test_tle_udp_destroy.h b/test/gtest/test_tle_udp_destroy.h
index d52376e..37bcceb 100644
--- a/test/gtest/test_tle_udp_destroy.h
+++ b/test/gtest/test_tle_udp_destroy.h
@@ -18,13 +18,13 @@
#include <gtest/gtest.h>
#include <rte_errno.h>
-#include <tle_udp_impl.h>
+#include <tle_ctx.h>
class udp_destroy : public ::testing::Test {
protected:
- struct tle_udp_ctx *ctx;
- struct tle_udp_ctx_param prm;
+ struct tle_ctx *ctx;
+ struct tle_ctx_param prm;
virtual void SetUp(void)
{
@@ -35,7 +35,7 @@ protected:
prm.max_stream_rbufs = 0x100;
prm.max_stream_sbufs = 0x100;
- ctx = tle_udp_create(&prm);
+ ctx = tle_ctx_create(&prm);
ASSERT_NE(ctx, (void *) NULL);
}