tailscale/net/packet
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>
2021-05-16 14:52:00 -07:00
..
doc.go net/packet: s/ParsedPacket/Parsed/ to avoid package stuttering. 2020-11-09 23:52:54 -08:00
header.go net/packet, wgengine/filter: support SCTP 2021-03-20 21:34:13 -07:00
icmp4.go net/packet, wgengine{,/filter}: remove net/packet IPProto forwarding consts 2021-03-20 21:45:47 -07:00
icmp6.go net/packet: documentation pass. 2020-11-10 22:29:00 -08:00
ip4.go net/packet, wgengine/filter: support SCTP 2021-03-20 21:34:13 -07:00
ip6.go net/packet, wgengine/filter: support SCTP 2021-03-20 21:34:13 -07:00
packet_test.go net/packet, wgengine{,/filter}: remove net/packet IPProto forwarding consts 2021-03-20 21:45:47 -07:00
packet.go all: adapt to opaque netaddr types 2021-05-16 14:52:00 -07:00
tsmp_test.go net/packet: add some more TSMP packet reject reasons and MaybeBroken bit 2021-02-04 10:59:07 -08:00
tsmp.go all: adapt to opaque netaddr types 2021-05-16 14:52:00 -07:00
udp4.go net/packet, wgengine{,/filter}: remove net/packet IPProto forwarding consts 2021-03-20 21:45:47 -07:00
udp6.go net/packet, wgengine{,/filter}: remove net/packet IPProto forwarding consts 2021-03-20 21:45:47 -07:00