srctree
repos
owner
network
issues
0
diffs
0
Public
Gregory Mullen
parent
b7117f3b
c78e39eb
add upstream thingy
which may go unused
src/server.zig
added: 11, removed: 1, total 10
@@ -43,6 +43,16 @@ pub fn main() !void {
std.debug.print("done\n", .{});
}
const Upstream = struct {
sock: std.posix.socket_t,
pub fn init() Upstream {
return .{
.sock = undefined,
};
}
};
const DNS = @import("dns.zig");
const std = @import("std");