11 lines
362 B
Racket
11 lines
362 B
Racket
|
(;; name of this server
|
||
|
(name "a crossfire server")
|
||
|
;; the ip address and port to listen on
|
||
|
(listen-addr "0.0.0.0")
|
||
|
(listen-port 25446)
|
||
|
;; the "public" ip (or domain name) and port of this node
|
||
|
;; - auto for addr selects the first interface addr (linux only)
|
||
|
;; - auto for port uses the same as listen-port
|
||
|
(public-addr "127.0.0.1")
|
||
|
(public-port auto))
|