12 lines
375 B
Racket
12 lines
375 B
Racket
(;; name of this server
|
|
(name "a crossfire server")
|
|
;; the ip address and port to listen on
|
|
;; auto is "0.0.0.0"
|
|
(listen-addr "0.0.0.0")
|
|
(listen-port 25446)
|
|
;; the "public" ip (or domain name) and port of this node
|
|
;; - auto for addr uses /etc/hostname, if present (linux only)
|
|
;; - auto for port uses the same as listen-port
|
|
(public-addr auto)
|
|
(public-port auto))
|