You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Josh Bleecher Snyder
25df067dd0
all: adapt to opaque netaddr types
This commit is a mishmash of automated edits using gofmt:
gofmt -r 'netaddr.IPPort{IP: a, Port: b} -> netaddr.IPPortFrom(a, b)' -w .
gofmt -r 'netaddr.IPPrefix{IP: a, Port: b} -> netaddr.IPPrefixFrom(a, b)' -w .
gofmt -r 'a.IP.Is4 -> a.IP().Is4' -w .
gofmt -r 'a.IP.As16 -> a.IP().As16' -w .
gofmt -r 'a.IP.Is6 -> a.IP().Is6' -w .
gofmt -r 'a.IP.As4 -> a.IP().As4' -w .
gofmt -r 'a.IP.String -> a.IP().String' -w .
And regexps:
\w*(.*)\.Port = (.*) -> $1 = $1.WithPort($2)
\w*(.*)\.IP = (.*) -> $1 = $1.WithIP($2)
And lots of manual fixups.
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
|
5 years ago |
| .. |
|
dns
|
all: adapt to opaque netaddr types
|
5 years ago |
|
dnscache
|
control/controlclient, net/{dnscache,dnsfallback}: add DNS fallback mechanism
|
5 years ago |
|
dnsfallback
|
net/dnsfallback: fix infinite loop and limit number of candidates
|
5 years ago |
|
flowtrack
|
net/packet, wgengine/filter: support SCTP
|
5 years ago |
|
interfaces
|
all: adapt to opaque netaddr types
|
5 years ago |
|
netcheck
|
all: adapt to opaque netaddr types
|
5 years ago |
|
netns
|
net/{interfaces,netns}: add some new tests, missed from prior commit
|
5 years ago |
|
netstat
|
all: adapt to opaque netaddr types
|
5 years ago |
|
nettest
|
net/nettest: make nettest.NewConn pass x/net/nettest.TestConn.
|
5 years ago |
|
packet
|
all: adapt to opaque netaddr types
|
5 years ago |
|
portmapper
|
all: adapt to opaque netaddr types
|
5 years ago |
|
socks5
|
cmd/tailscaled, wgengine: remove --fake, replace with netstack
|
5 years ago |
|
stun
|
tstest/integration: add testNode.AwaitListening, DERP+STUN, improve proxy trap
|
5 years ago |
|
tlsdial
|
net/tlsdial, derp/derphttp: finish DERPNode.CertName validation
|
6 years ago |
|
tsaddr
|
all: adapt to opaque netaddr types
|
5 years ago |
|
tshttpproxy
|
net/tshttpproxy: call winhttp calls from a fixed OS thread
|
5 years ago |
|
tstun
|
all: adapt to opaque netaddr types
|
5 years ago |