make IP address available

R=rsc
DELTA=30  (30 added, 0 deleted, 0 changed)
OCL=30536
CL=30536
diff --git a/src/pkg/net/net.go b/src/pkg/net/net.go
index 8d7e7ba..91d498a 100644
--- a/src/pkg/net/net.go
+++ b/src/pkg/net/net.go
@@ -33,6 +33,12 @@
 	// Close closes the connection.
 	Close() os.Error;
 
+	// LocalAddr returns the local network address.
+	LocalAddr() string;
+
+	// RemoteAddr returns the remote network address.
+	RemoteAddr() string;
+
 	// For packet-based protocols such as UDP,
 	// ReadFrom reads the next packet from the network,
 	// returning the number of bytes read and the remote
@@ -318,6 +324,20 @@
 	raddr string;
 }
 
+func (c *connBase) LocalAddr() string {
+	if c == nil {
+		return ""
+	}
+	return c.fd.addr();
+}
+
+func (c *connBase) RemoteAddr() string {
+	if c == nil {
+		return ""
+	}
+	return c.fd.remoteAddr();
+}
+
 func (c *connBase) File() *os.File {
 	if c == nil {
 		return nil