Pretending to get started
This commit is contained in:
parent
e704f17b73
commit
8083295c42
31
6.ts
Normal file
31
6.ts
Normal file
|
@ -0,0 +1,31 @@
|
|||
import { BufReader } from "https://deno.land/std@0.157.0/io/buffer.ts";
|
||||
|
||||
const PORT = 5588;
|
||||
|
||||
// const tEnc = new TextEncoder();
|
||||
|
||||
console.log(`Starting TCP listener on on 0.0.0.0:${PORT}`);
|
||||
|
||||
function chatSession(conn: Deno.Conn) {
|
||||
const closeOnDisconnect = () => {
|
||||
console.warn("Disconnected client");
|
||||
try {
|
||||
conn.close();
|
||||
} catch (err) {
|
||||
console.error("Error closing client connection:", err);
|
||||
}
|
||||
};
|
||||
|
||||
serve(conn).catch((e) => e).finally(closeOnDisconnect);
|
||||
}
|
||||
|
||||
async function serve(conn: Deno.Conn) {
|
||||
const reader = new BufReader(conn);
|
||||
reader.peek(1);
|
||||
}
|
||||
|
||||
for await (const conn of Deno.listen({ port: PORT })) {
|
||||
console.log("Connection established:", conn.remoteAddr);
|
||||
chatSession(conn);
|
||||
console.log("Connection closed:", conn.remoteAddr);
|
||||
}
|
Loading…
Reference in a new issue