aboutsummaryrefslogtreecommitdiff
path: root/src/pawsd/servers.lua
blob: 39198bfaec8d38d7e468ee98d4823ec839e4c9b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--
-- ~~~ hard-coded known servers
--

local PawSD = require("src/pawsd/variables")

local servers = {

    -- wife
    winternet = {
        host = "91.135.8.179",
        port = 10016,
        keyalg = PawSD.KeyAlg.ED25519,
        key = "c5821e05348017253cfc80870bca03ed0a8b93bc3358339e7eee4408fffd2c2d"
    },

    -- nex
    cyan = {
        host = "152.53.107.149",
        port = 10016,
        keyalg = PawSD.KeyAlg.ED25519,
        key = "9c61cd5102b20d3e66a73f1d5f6373fbd324358269a929b11f1e4cb9cc992047"
    }
}

return servers