26 lines
1.1 KiB
Racket
26 lines
1.1 KiB
Racket
#lang racket/base
|
|
;; Demonstration stack configuration for various hosts.
|
|
|
|
(require racket/match)
|
|
(require minimart)
|
|
(require (only-in mzlib/os gethostname))
|
|
(require "configuration.rkt")
|
|
|
|
(provide spawn-demo-config)
|
|
|
|
(define (spawn-demo-config)
|
|
(spawn (lambda (e s) #f)
|
|
(void)
|
|
(match (gethostname)
|
|
["skip"
|
|
(gestalt-union (pub (gateway-route (bytes 0 0 0 0) 0 (bytes 192 168 1 1) "en0"))
|
|
(pub (host-route (bytes 192 168 1 222) 24 "en0")))]
|
|
[(or "hop" "walk")
|
|
(gestalt-union (pub (gateway-route (bytes 0 0 0 0) 0 (bytes 192 168 1 1) "wlan0"))
|
|
(pub (host-route (bytes 192 168 1 222) 24 "wlan0")))]
|
|
["stockholm.ccs.neu.edu"
|
|
(gestalt-union (pub (host-route (bytes 129 10 115 94) 24 "eth0"))
|
|
(pub (host-route (bytes 192 168 56 222) 24 "vboxnet0"))
|
|
(pub (gateway-route (bytes 0 0 0 0) 0 (bytes 129 10 115 1) "eth0")))]
|
|
[else
|
|
(error 'spawn-demo-config "No setup for hostname ~a" (gethostname))])))
|