diff options
author | Jon Loeliger <jdl@netgate.com> | 2017-11-10 13:15:12 -0600 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2017-11-11 19:06:46 +0000 |
commit | 27cadd23b6c220e73552fa7b3fe61e5874d07cec (patch) | |
tree | eddf4bce55a3dcce933dcfd2984abac57a739a90 /src/vnet | |
parent | 62fe07c8e30a6ac718fe65528592fe6964d753fa (diff) |
ACLs: Use better error return codes than "-1" everywhere.
Added two new errors:
ACL_IN_USE_INBOUND
ACL_IN_USE_OUTBOUND
Update ACL tests to expect new, precise return values.
Change-Id: I644861a18aa5b70cce5f451dd6655641160c7697
Signed-off-by: Jon Loeliger <jdl@netgate.com>
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/api_errno.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vnet/api_errno.h b/src/vnet/api_errno.h index f24cef4739c..e4ba8ddfb95 100644 --- a/src/vnet/api_errno.h +++ b/src/vnet/api_errno.h @@ -130,7 +130,9 @@ _(NAME_SERVER_FORMAT_ERROR, -137, "Server format error (bug!)") \ _(NAME_SERVER_NO_SUCH_NAME, -138, "No such name") \ _(NAME_SERVER_NO_ADDRESSES, -139, "No addresses available") \ _(NAME_SERVER_NEXT_SERVER, -140, "Retry with new server") \ -_(APP_CONNECT_FILTERED, -141, "Connect was filtered") +_(APP_CONNECT_FILTERED, -141, "Connect was filtered") \ +_(ACL_IN_USE_INBOUND, -142, "Inbound ACL in use") \ +_(ACL_IN_USE_OUTBOUND, -143, "Outbound ACL in use") typedef enum { |