This commit is contained in:
Miek Gieben 2011-04-03 13:30:25 +02:00
parent 490bb0994a
commit 16be743198
1 changed files with 2 additions and 8 deletions

View File

@ -376,16 +376,10 @@ func (w *response) Write(data []byte) (n int, err os.Error) {
}
// Acl implements the ResponseWriter.Acl
func (w *response) Acl() map[string]bool {
return w.conn.acl
}
func (w *response) Acl() map[string]bool { return w.conn.acl }
// Tsig implements the ResponseWriter.Tsig
func (w *response) Tsig() map[string]string {
return w.conn.tsig
}
func (w *response) Tsig() map[string]string { return w.conn.tsig }
// RemoteAddr implements the ResponseWriter.RemoteAddr method
func (w *response) RemoteAddr() string { return w.conn.remoteAddr.String() }