summaryrefslogtreecommitdiffstats
path: root/lib/util.js
blob: 3d46bfbfd05f4bcedfaa5c14240a8fea9271f846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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,
}