Skip to main content

boringtun_easytier/noise/
errors.rs

1// Copyright (c) 2019 Cloudflare, Inc. All rights reserved.
2// SPDX-License-Identifier: BSD-3-Clause
3
4#[derive(Debug)]
5pub enum WireGuardError {
6    DestinationBufferTooSmall,
7    IncorrectPacketLength,
8    UnexpectedPacket,
9    WrongPacketType,
10    WrongIndex,
11    WrongKey,
12    InvalidTai64nTimestamp,
13    WrongTai64nTimestamp,
14    InvalidMac,
15    InvalidAeadTag,
16    InvalidCounter,
17    DuplicateCounter,
18    InvalidPacket,
19    NoCurrentSession,
20    LockFailed,
21    ConnectionExpired,
22    UnderLoad,
23}