• Russ Cox's avatar
    package net cleanup · c83b8386
    Russ Cox authored
    added ReadFrom/WriteTo for packet protocols like UDP.
    simplified the net.Conn interface.
    added new net.PacketConn interface for packet protocols.
    implemented proper UDP listener.
    
    cleaned up LocalAddr/RemoteAddr methods - cache in netFD.
    
    threw away various unused methods.
    
    an interface change:
    introduced net.Addr as a network address interface,
    to avoid conversion of UDP host:port to string and
    back for every ReadFrom/WriteTo sequence.
    
    another interface change:
    since signature of Listener.Accept was changing anyway,
    dropped the middle return value, because it is available
    as c.RemoteAddr().  (the Accept signature predates the
    existence of that method.)
    
    Dial and Listen still accept strings, but the proto-specific
    versions DialTCP, ListenUDP, etc. take net.Addr instead.
    
    because the generic Dial didn't change and because
    no one calls Accept directly (only indirectly via the http
    server), very little code will be affected by these interface
    changes.
    
    design comments welcome.
    
    R=p
    CC=go-dev, r
    http://go/go-review/1018017
    c83b8386
Name
Last commit
Last update
..
archive/tar Loading commit data...
asn1 Loading commit data...
big Loading commit data...
bignum Loading commit data...
bufio Loading commit data...
bytes Loading commit data...
compress Loading commit data...
container Loading commit data...
crypto Loading commit data...
debug Loading commit data...
ebnf Loading commit data...
encoding Loading commit data...
exec Loading commit data...
exp Loading commit data...
expvar Loading commit data...
flag Loading commit data...
fmt Loading commit data...
go Loading commit data...
gob Loading commit data...
hash Loading commit data...
http Loading commit data...
image Loading commit data...
io Loading commit data...
json Loading commit data...
log Loading commit data...
malloc Loading commit data...
math Loading commit data...
net Loading commit data...
once Loading commit data...
os Loading commit data...
path Loading commit data...
rand Loading commit data...
reflect Loading commit data...
regexp Loading commit data...
rpc Loading commit data...
runtime Loading commit data...
sort Loading commit data...
strconv Loading commit data...
strings Loading commit data...
sync Loading commit data...
syscall Loading commit data...
tabwriter Loading commit data...
template Loading commit data...
testing Loading commit data...
time Loading commit data...
unicode Loading commit data...
unsafe Loading commit data...
utf8 Loading commit data...
xml Loading commit data...
Make.deps Loading commit data...
Makefile Loading commit data...
deps.bash Loading commit data...