From a601234fbac3d773bd4ed43a213e1572c812250d Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Thu, 15 Dec 2011 13:00:37 -0500 Subject: [PATCH] transparent -> prefab --- simple-udp-service.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple-udp-service.rkt b/simple-udp-service.rkt index aae6676..be04f71 100644 --- a/simple-udp-service.rkt +++ b/simple-udp-service.rkt @@ -13,7 +13,7 @@ ;; either a received UDP packet and the source of the packet, or a UDP ;; packet ready to be sent along with the address to which it should ;; be sent. -(struct udp-packet (body host port) #:transparent) +(struct udp-packet (body host port) #:prefab) ;; TODO: Should packet-classifier be permitted to examine (or possibly ;; even transform!) the ServerState?