diff options
author | Dave Barach <dave@barachs.net> | 2019-06-08 12:33:13 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-06-08 19:39:57 +0000 |
commit | 7681b1c469eda79003eef550fda460f48e5a08d7 (patch) | |
tree | a7bc4e892fd2b60efc2b39775487f51c524c10f0 /src/plugins/mactime/mactime.h | |
parent | 8875248f5e0602f4b4872ea12e542826df3df1f8 (diff) |
mactime: add per-mac allow-with-quota feature
Specify a data limit during specified time ranges. Outside of the
specified time ranges, data will be allowed.
Clean up "show mactime" output.
Type: feature
Change-Id: Iddd6678e7ded1d0f9cb88d69c656de8d87d5694c
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'src/plugins/mactime/mactime.h')
-rw-r--r-- | src/plugins/mactime/mactime.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/mactime/mactime.h b/src/plugins/mactime/mactime.h index 928d7e940b6..11e33c1122b 100644 --- a/src/plugins/mactime/mactime.h +++ b/src/plugins/mactime/mactime.h @@ -37,6 +37,7 @@ typedef struct u8 *device_name; u8 mac_address[6]; u64 data_quota; + u64 data_used_in_range; u32 flags; clib_timebase_range_t *ranges; } mactime_device_t; @@ -46,7 +47,8 @@ typedef struct #define MACTIME_DEVICE_FLAG_STATIC_ALLOW (1<<1) #define MACTIME_DEVICE_FLAG_DYNAMIC_DROP (1<<2) #define MACTIME_DEVICE_FLAG_DYNAMIC_ALLOW (1<<3) -#define MACTIME_DEVICE_FLAG_DROP_UDP_10001 (1<<4) +#define MACTIME_DEVICE_FLAG_DYNAMIC_ALLOW_QUOTA (1<<4) +#define MACTIME_DEVICE_FLAG_DROP_UDP_10001 (1<<5) typedef struct { |