mirror of
https://github.com/YGGverse/ggemini.git
synced 2026-03-31 17:15:31 +00:00
fix codes
This commit is contained in:
parent
9eb21bb6a3
commit
2102d8887a
1 changed files with 3 additions and 3 deletions
|
|
@ -1,9 +1,9 @@
|
||||||
pub mod error;
|
pub mod error;
|
||||||
pub use error::Error;
|
pub use error::Error;
|
||||||
|
|
||||||
const REQUIRED: (u8, &str) = (10, "Certificate required");
|
const REQUIRED: (u8, &str) = (60, "Certificate required");
|
||||||
const NOT_AUTHORIZED: (u8, &str) = (11, "Certificate not authorized");
|
const NOT_AUTHORIZED: (u8, &str) = (61, "Certificate not authorized");
|
||||||
const NOT_VALID: (u8, &str) = (11, "Certificate not valid");
|
const NOT_VALID: (u8, &str) = (62, "Certificate not valid");
|
||||||
|
|
||||||
/// 6* status code group
|
/// 6* status code group
|
||||||
/// https://geminiprotocol.net/docs/protocol-specification.gmi#client-certificates
|
/// https://geminiprotocol.net/docs/protocol-specification.gmi#client-certificates
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue