From b7671d7b48f50e5bb12bdfd6d58c96a3c987c29d Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Fri, 1 Apr 2011 10:53:31 +0200 Subject: [PATCH] playing with stuff --- server.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/server.go b/server.go index d2205e93..65bb091c 100644 --- a/server.go +++ b/server.go @@ -11,6 +11,15 @@ import ( "net" ) +// Handle register the handler the given pattern +// in the DefaultServeMux. The documentation for +// ServeMux explains how patters are matched. +func Handle(pattern string, handler Hander) { + +} + +type S + // HandleUDP handles one UDP connection. It reads the incoming // message and then calls the function f. // The function f is executed in a seperate goroutine at which point