mirror of
https://git.robbyzambito.me/zits
synced 2026-02-04 19:54:48 +00:00
This commit is contained in:
18
src/server/client.zig
Normal file
18
src/server/client.zig
Normal file
@@ -0,0 +1,18 @@
|
||||
const ClientState = struct {
|
||||
verbose: bool = false,
|
||||
pedantic: bool = false,
|
||||
tls_required: bool = false,
|
||||
auth_token: ?[]const u8 = null,
|
||||
user: ?[]const u8 = null,
|
||||
pass: ?[]const u8 = null,
|
||||
name: ?[]const u8 = null,
|
||||
lang: []const u8,
|
||||
version: []const u8,
|
||||
protocol: u32,
|
||||
echo: ?bool = null,
|
||||
sig: ?[]const u8 = null,
|
||||
jwt: ?[]const u8 = null,
|
||||
no_responders: ?bool = null,
|
||||
headers: ?bool = null,
|
||||
nkey: ?[]const u8 = null,
|
||||
};
|
||||
Reference in New Issue
Block a user