rename security_zone to domain

This commit is contained in:
luwenpeng
2024-01-15 14:31:38 +08:00
parent a045c04f8d
commit 8f685bc018
10 changed files with 80 additions and 80 deletions

View File

@@ -12,7 +12,7 @@
(name).src_port = htons(1234); \
(name).dst_port = htons(5678); \
(name).ip_proto = IPPROTO_TCP; \
(name).security_zone = 0;
(name).domain = 0;
#define SESSION_KEY_IPV6_UDP(name) \
struct tuple6 name; \
@@ -23,7 +23,7 @@
(name).src_port = htons(1234); \
(name).dst_port = htons(5678); \
(name).ip_proto = IPPROTO_UDP; \
(name).security_zone = 0;
(name).domain = 0;
#define SESSION_KEY_IPV6_TCP(name) \
struct tuple6 name; \
@@ -34,7 +34,7 @@
(name).src_port = htons(1234); \
(name).dst_port = htons(5678); \
(name).ip_proto = IPPROTO_TCP; \
(name).security_zone = 0;
(name).domain = 0;
static void session_free_callback(struct session *sess, void *arg)
{