//! Types and macros for building authentication hooks
pubusekiwi_macro::authenticate;/// The outcome of an authentication hook
pubenumOutcome{/// Authenticate the connection
Authenticate,/// Reject the connection
Reject,/// Authenticate the connection and attach custom context for use in the
/// intercept hook
WithContext(Vec<u8>),}