diff options
| author | Jannis R <mail@jannisr.de> | 2020-05-02 15:32:36 +0200 |
|---|---|---|
| committer | Jannis R <mail@jannisr.de> | 2020-05-02 16:35:50 +0200 |
| commit | 1b5af6f4bdfca939e780ae70bd6e1819425824f7 (patch) | |
| tree | 4e3fb0c4957680348c473ff45e3478780d1ba55c /lib | |
| parent | 635b65aa8af3b35a4ea2c8a5fea805853942cbf4 (diff) | |
move code, server example :memo:
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/request-parser.js (renamed from lib/parser.js) | 9 | ||||
| -rw-r--r-- | lib/util.js | 14 |
2 files changed, 17 insertions, 6 deletions
diff --git a/lib/parser.js b/lib/request-parser.js index a66a323..04c5cd6 100644 --- a/lib/parser.js +++ b/lib/request-parser.js @@ -12,7 +12,7 @@ const {MESSAGES} = require('./statuses') const CRLF = '\r\n' const MAX_HEADER_SIZE = 1024 + CRLF.length -const createParser = () => { +const createRequestParser = () => { let headerParsed = false let peek = Buffer.alloc(0) @@ -63,7 +63,7 @@ const createParser = () => { return out } -// const p = createParser() +// const p = createRequestParser() // p.on('error', console.error) // p.on('header', h => console.log('header', h)) // p.on('data', d => console.log('data', d.toString('utf8'))) @@ -72,7 +72,4 @@ const createParser = () => { // p.write(b('le.org/foo?bar#baz\r\nhel')) // p.end(b('lo server!')) -module.exports = { - MESSAGES, - createParser, -} +module.exports = createRequestParser diff --git a/lib/util.js b/lib/util.js new file mode 100644 index 0000000..3d46bfb --- /dev/null +++ b/lib/util.js @@ -0,0 +1,14 @@ +'use strict' + +// todo: clarify if ALPN is wanted & if this ID is correct +const ALPN_ID = 'gemini' + +// https://gemini.circumlunar.space/docs/spec-spec.txt, 1. +// > When Gemini is served over TCP/IP, servers should listen on port 1965 +// > (the first manned Gemini mission, Gemini 3, flew in March '65). +const DEFAULT_PORT = 1965 + +module.exports = { + ALPN_ID, + DEFAULT_PORT, +} |
