diff options
author | Angelo Mantellini <angelo.mantellini@cisco.com> | 2021-01-08 08:44:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2021-01-08 08:44:35 +0000 |
commit | d80f1502caa07e77593f4e632a0028e450a6b0d8 (patch) | |
tree | f96e2981a795d10252132ce828abe3d58ae27f8b /ctrl | |
parent | 52cc578d5341f35f9dc3197af4b72720f916a709 (diff) | |
parent | 2f46913d96f0a2b4107384c949d07f471f59df3e (diff) |
Merge "[HICN-669] policy_t yet used in mac os 11"
Diffstat (limited to 'ctrl')
-rw-r--r-- | ctrl/libhicnctrl/includes/hicn/ctrl/api.h | 2 | ||||
-rw-r--r-- | ctrl/libhicnctrl/includes/hicn/ctrl/commands.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ctrl/libhicnctrl/includes/hicn/ctrl/api.h b/ctrl/libhicnctrl/includes/hicn/ctrl/api.h index bdb0c0a5f..f92b39ff3 100644 --- a/ctrl/libhicnctrl/includes/hicn/ctrl/api.h +++ b/ctrl/libhicnctrl/includes/hicn/ctrl/api.h @@ -711,7 +711,7 @@ typedef struct { int family; /* Krw */ ip_address_t remote_addr; /* krw */ u8 len; /* krw */ - policy_t policy; /* .rw */ + hicn_policy_t policy; /* .rw */ } hc_policy_t; int hc_policy_parse(void *in, hc_policy_t *policy); diff --git a/ctrl/libhicnctrl/includes/hicn/ctrl/commands.h b/ctrl/libhicnctrl/includes/hicn/ctrl/commands.h index d8e5329b3..3758f0f41 100644 --- a/ctrl/libhicnctrl/includes/hicn/ctrl/commands.h +++ b/ctrl/libhicnctrl/includes/hicn/ctrl/commands.h @@ -329,14 +329,14 @@ typedef struct { ip_address_t address; uint8_t addressType; uint8_t len; - policy_t policy; + hicn_policy_t policy; } add_policy_command; typedef struct { ip_address_t address; uint8_t addressType; uint8_t len; - policy_t policy; + hicn_policy_t policy; } list_policies_command; typedef struct { |