mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-26 02:05:19 +00:00
16 lines
350 B
Swift
16 lines
350 B
Swift
//
|
|
// NoiseSessionError.swift
|
|
// bitchat
|
|
//
|
|
// This is free and unencumbered software released into the public domain.
|
|
// For more information, see <https://unlicense.org>
|
|
//
|
|
|
|
enum NoiseSessionError: Error, Equatable {
|
|
case invalidState
|
|
case notEstablished
|
|
case sessionNotFound
|
|
case alreadyEstablished
|
|
case peerIdentityMismatch
|
|
}
|