summaryrefslogtreecommitdiffstats
path: root/src/conntrack/getter.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conntrack/getter.c')
-rw-r--r--src/conntrack/getter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conntrack/getter.c b/src/conntrack/getter.c
index 4314058..96273a0 100644
--- a/src/conntrack/getter.c
+++ b/src/conntrack/getter.c
@@ -297,9 +297,9 @@ static const void *get_attr_dccp_role(const struct nf_conntrack *ct)
return &ct->protoinfo.dccp.role;
}
-static const void *get_attr_dccp_seq(const struct nf_conntrack *ct)
+static const void *get_attr_dccp_handshake_seq(const struct nf_conntrack *ct)
{
- return &ct->protoinfo.dccp.seq;
+ return &ct->protoinfo.dccp.handshake_seq;
}
get_attr get_attr_array[ATTR_MAX] = {
@@ -361,5 +361,5 @@ get_attr get_attr_array[ATTR_MAX] = {
[ATTR_HELPER_NAME] = get_attr_helper_name,
[ATTR_DCCP_STATE] = get_attr_dccp_state,
[ATTR_DCCP_ROLE] = get_attr_dccp_role,
- [ATTR_DCCP_SEQ] = get_attr_dccp_seq,
+ [ATTR_DCCP_HANDSHAKE_SEQ] = get_attr_dccp_handshake_seq,
};