docstring_tokens
stringlengths
0
76.5k
code_tokens
stringlengths
75
1.81M
label_window
sequencelengths
4
2.12k
html_url
stringlengths
74
116
file_name
stringlengths
3
311
cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"},
<mask> ns: &neighs{ <mask> mu: &sync.RWMutex{}, <mask> ns: make([]Neighbor, 0), <mask> }, <mask> cmd: "arp", <mask> args: []string{"-a"}, <mask> } <mask> } <mask> <mask> // parseArpA parses the output of the "arp -a" command on macOS and FreeBSD. <mask> // The expected input format: </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove // parseArpA parses the output of the "arp -a" command on macOS and FreeBSD. </s> add // parseArpA parses the output of the "arp -a -n" command on macOS and FreeBSD. </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove // parseArpA parses the output of the "arp -a" command on OpenBSD. The expected // input format: </s> add // parseArpA parses the output of the "arp -a -n" command on OpenBSD. The // expected input format: </s> remove // parseArpA parses the output of the "arp -a" command on Linux. The expected // input format: </s> add // parseArpA parses the output of the "arp -a -n" command on Linux. The // expected input format: </s> remove args: []string{"-a"}, </s> add // Use -n flag to avoid resolving the hostnames of the neighbors. // By default ARP attempts to resolve the hostnames via DNS. See // man 8 arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"},
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/aghnet/arpdb_bsd.go
// parseArpA parses the output of the "arp -a -n" command on macOS and FreeBSD.
<mask> args: []string{"-a"}, <mask> } <mask> } <mask> <mask> // parseArpA parses the output of the "arp -a" command on macOS and FreeBSD. <mask> // The expected input format: <mask> // <mask> // host.name (192.168.0.1) at ff:ff:ff:ff:ff:ff on en0 ifscope [ethernet] <mask> // <mask> func parseArpA(sc *bufio.Scanner, lenHint int) (ns []Neighbor) { </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove // parseArpA parses the output of the "arp -a" command on Linux. The expected // input format: </s> add // parseArpA parses the output of the "arp -a -n" command on Linux. The // expected input format: </s> remove // parseArpA parses the output of the "arp -a" command on OpenBSD. The expected // input format: </s> add // parseArpA parses the output of the "arp -a -n" command on OpenBSD. The // expected input format: </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan </s> add // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan </s> remove // parseArpAWrt parses the output of the "arp -a" command on OpenWrt. The </s> add // parseArpAWrt parses the output of the "arp -a -n" command on OpenWrt. The
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/aghnet/arpdb_bsd.go
// Then, try "arp -a -n".
<mask> ns: ns, <mask> fsys: rootDirFS, <mask> filename: "proc/net/arp", <mask> }, <mask> // Then, try "arp -a". <mask> &cmdARPDB{ <mask> parse: parseF, <mask> ns: ns, <mask> cmd: "arp", <mask> args: []string{"-a"}, </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove args: []string{"-a"}, </s> add // Use -n flag to avoid resolving the hostnames of the neighbors. // By default ARP attempts to resolve the hostnames via DNS. See // man 8 arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove func newARPDB() *cmdARPDB { </s> add func newARPDB() (arp *cmdARPDB) { </s> remove func newARPDB() *cmdARPDB { </s> add func newARPDB() (arp *cmdARPDB) {
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/aghnet/arpdb_linux.go
// Use -n flag to avoid resolving the hostnames of the neighbors. // By default ARP attempts to resolve the hostnames via DNS. See // man 8 arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"},
<mask> &cmdARPDB{ <mask> parse: parseF, <mask> ns: ns, <mask> cmd: "arp", <mask> args: []string{"-a"}, <mask> }, <mask> // Finally, try "ip neigh". <mask> &cmdARPDB{ <mask> parse: parseIPNeigh, <mask> ns: ns, </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove // Then, try "arp -a". </s> add // Then, try "arp -a -n". </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove func newARPDB() *cmdARPDB { </s> add func newARPDB() (arp *cmdARPDB) { </s> remove func newARPDB() *cmdARPDB { </s> add func newARPDB() (arp *cmdARPDB) {
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/aghnet/arpdb_linux.go
// parseArpAWrt parses the output of the "arp -a -n" command on OpenWrt. The
<mask> func (arp *fsysARPDB) Neighbors() (ns []Neighbor) { <mask> return arp.ns.clone() <mask> } <mask> <mask> // parseArpAWrt parses the output of the "arp -a" command on OpenWrt. The <mask> // expected input format: <mask> // <mask> // IP address HW type Flags HW address Mask Device <mask> // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan <mask> // </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan </s> add // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan </s> remove // parseArpA parses the output of the "arp -a" command on OpenBSD. The expected // input format: </s> add // parseArpA parses the output of the "arp -a -n" command on OpenBSD. The // expected input format: </s> remove // parseArpA parses the output of the "arp -a" command on Linux. The expected // input format: </s> add // parseArpA parses the output of the "arp -a -n" command on Linux. The // expected input format: </s> remove // parseArpA parses the output of the "arp -a" command on macOS and FreeBSD. </s> add // parseArpA parses the output of the "arp -a -n" command on macOS and FreeBSD. </s> remove // address stays here while it's inside clients. After leaving clients // the address will be resolved once again. If the address couldn't be // resolved, cache prevents further attempts to resolve it for some // time. </s> add // address stays here while it's inside clients. After leaving clients the // address will be resolved once again. If the address couldn't be // resolved, cache prevents further attempts to resolve it for some time.
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/aghnet/arpdb_linux.go
// IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan
<mask> <mask> // parseArpAWrt parses the output of the "arp -a" command on OpenWrt. The <mask> // expected input format: <mask> // <mask> // IP address HW type Flags HW address Mask Device <mask> // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan <mask> // <mask> func parseArpAWrt(sc *bufio.Scanner, lenHint int) (ns []Neighbor) { <mask> if !sc.Scan() { <mask> // Skip the header. <mask> return </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove // parseArpAWrt parses the output of the "arp -a" command on OpenWrt. The </s> add // parseArpAWrt parses the output of the "arp -a -n" command on OpenWrt. The </s> remove // parseArpA parses the output of the "arp -a" command on OpenBSD. The expected // input format: </s> add // parseArpA parses the output of the "arp -a -n" command on OpenBSD. The // expected input format: </s> remove // parseArpA parses the output of the "arp -a" command on Linux. The expected // input format: </s> add // parseArpA parses the output of the "arp -a -n" command on Linux. The // expected input format: </s> remove // parseArpA parses the output of the "arp -a" command on macOS and FreeBSD. </s> add // parseArpA parses the output of the "arp -a -n" command on macOS and FreeBSD. </s> remove // address stays here while it's inside clients. After leaving clients // the address will be resolved once again. If the address couldn't be // resolved, cache prevents further attempts to resolve it for some // time. </s> add // address stays here while it's inside clients. After leaving clients the // address will be resolved once again. If the address couldn't be // resolved, cache prevents further attempts to resolve it for some time.
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/aghnet/arpdb_linux.go
// parseArpA parses the output of the "arp -a -n" command on Linux. The // expected input format:
<mask> <mask> return ns <mask> } <mask> <mask> // parseArpA parses the output of the "arp -a" command on Linux. The expected <mask> // input format: <mask> // <mask> // hostname (192.168.1.1) at ab:cd:ef:ab:cd:ef [ether] on enp0s3 <mask> // <mask> func parseArpA(sc *bufio.Scanner, lenHint int) (ns []Neighbor) { <mask> ns = make([]Neighbor, 0, lenHint) </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove // parseArpA parses the output of the "arp -a" command on OpenBSD. The expected // input format: </s> add // parseArpA parses the output of the "arp -a -n" command on OpenBSD. The // expected input format: </s> remove // parseArpA parses the output of the "arp -a" command on macOS and FreeBSD. </s> add // parseArpA parses the output of the "arp -a -n" command on macOS and FreeBSD. </s> remove // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan </s> add // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan </s> remove // parseArpAWrt parses the output of the "arp -a" command on OpenWrt. The </s> add // parseArpAWrt parses the output of the "arp -a -n" command on OpenWrt. The </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"},
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/aghnet/arpdb_linux.go
func newARPDB() (arp *cmdARPDB) {
<mask> <mask> "github.com/AdguardTeam/golibs/log" <mask> ) <mask> <mask> func newARPDB() *cmdARPDB { <mask> return &cmdARPDB{ <mask> parse: parseArpA, <mask> ns: &neighs{ <mask> mu: &sync.RWMutex{}, <mask> ns: make([]Neighbor, 0), </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove func newARPDB() *cmdARPDB { </s> add func newARPDB() (arp *cmdARPDB) { </s> remove func newARPDB() *cmdARPDB { </s> add func newARPDB() (arp *cmdARPDB) { </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove // Then, try "arp -a". </s> add // Then, try "arp -a -n".
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/aghnet/arpdb_openbsd.go
cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"},
<mask> ns: &neighs{ <mask> mu: &sync.RWMutex{}, <mask> ns: make([]Neighbor, 0), <mask> }, <mask> cmd: "arp", <mask> args: []string{"-a"}, <mask> } <mask> } <mask> <mask> // parseArpA parses the output of the "arp -a" command on OpenBSD. The expected <mask> // input format: </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove // parseArpA parses the output of the "arp -a" command on OpenBSD. The expected // input format: </s> add // parseArpA parses the output of the "arp -a -n" command on OpenBSD. The // expected input format: </s> remove // parseArpA parses the output of the "arp -a" command on macOS and FreeBSD. </s> add // parseArpA parses the output of the "arp -a -n" command on macOS and FreeBSD. </s> remove // parseArpA parses the output of the "arp -a" command on Linux. The expected // input format: </s> add // parseArpA parses the output of the "arp -a -n" command on Linux. The // expected input format: </s> remove args: []string{"-a"}, </s> add // Use -n flag to avoid resolving the hostnames of the neighbors. // By default ARP attempts to resolve the hostnames via DNS. See // man 8 arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"},
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/aghnet/arpdb_openbsd.go
// parseArpA parses the output of the "arp -a -n" command on OpenBSD. The // expected input format:
<mask> args: []string{"-a"}, <mask> } <mask> } <mask> <mask> // parseArpA parses the output of the "arp -a" command on OpenBSD. The expected <mask> // input format: <mask> // <mask> // Host Ethernet Address Netif Expire Flags <mask> // 192.168.1.1 ab:cd:ef:ab:cd:ef em0 19m59s <mask> // <mask> func parseArpA(sc *bufio.Scanner, lenHint int) (ns []Neighbor) { </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove // parseArpA parses the output of the "arp -a" command on Linux. The expected // input format: </s> add // parseArpA parses the output of the "arp -a -n" command on Linux. The // expected input format: </s> remove // parseArpA parses the output of the "arp -a" command on macOS and FreeBSD. </s> add // parseArpA parses the output of the "arp -a -n" command on macOS and FreeBSD. </s> remove // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan </s> add // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan </s> remove // parseArpAWrt parses the output of the "arp -a" command on OpenWrt. The </s> add // parseArpAWrt parses the output of the "arp -a -n" command on OpenWrt. The </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"},
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/aghnet/arpdb_openbsd.go
func newARPDB() (arp *cmdARPDB) {
<mask> "strings" <mask> "sync" <mask> ) <mask> <mask> func newARPDB() *cmdARPDB { <mask> return &cmdARPDB{ <mask> parse: parseArpA, <mask> ns: &neighs{ <mask> mu: &sync.RWMutex{}, <mask> ns: make([]Neighbor, 0), </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove func newARPDB() *cmdARPDB { </s> add func newARPDB() (arp *cmdARPDB) { </s> remove func newARPDB() *cmdARPDB { </s> add func newARPDB() (arp *cmdARPDB) { </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove // Then, try "arp -a". </s> add // Then, try "arp -a -n".
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/aghnet/arpdb_windows.go
want int
<mask> <mask> testCases := []struct { <mask> name string <mask> msg dns.Msg <mask> want bool <mask> }{{ <mask> name: "simple", <mask> msg: dns.Msg{ <mask> MsgHdr: dns.MsgHdr{ <mask> Id: 1234, </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove want: false, </s> add want: 0, </s> remove want: true, </s> add want: 1, </s> remove if tc.want { assert.Equal(t, 1, rd.recentRequests.Stats().Count) } else { assert.Zero(t, rd.recentRequests.Stats().Count) } </s> add assert.Equal(t, tc.want, rd.recentRequests.Stats().Count) </s> remove func newARPDB() *cmdARPDB { </s> add func newARPDB() (arp *cmdARPDB) { </s> remove func newARPDB() *cmdARPDB { </s> add func newARPDB() (arp *cmdARPDB) {
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/dnsforward/recursiondetector_test.go
want: 1,
<mask> Name: "some.domain", <mask> Qtype: dns.TypeA, <mask> }}, <mask> }, <mask> want: true, <mask> }, { <mask> name: "unencumbered", <mask> msg: dns.Msg{}, <mask> want: false, <mask> }} </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove want: false, </s> add want: 0, </s> remove want bool </s> add want int </s> remove // Then, try "arp -a". </s> add // Then, try "arp -a -n". </s> remove args: []string{"-a"}, </s> add // Use -n flag to avoid resolving the hostnames of the neighbors. // By default ARP attempts to resolve the hostnames via DNS. See // man 8 arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"},
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/dnsforward/recursiondetector_test.go
want: 0,
<mask> want: true, <mask> }, { <mask> name: "unencumbered", <mask> msg: dns.Msg{}, <mask> want: false, <mask> }} <mask> <mask> for _, tc := range testCases { <mask> t.Run(tc.name, func(t *testing.T) { <mask> t.Cleanup(rd.clear) </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove want: true, </s> add want: 1, </s> remove if tc.want { assert.Equal(t, 1, rd.recentRequests.Stats().Count) } else { assert.Zero(t, rd.recentRequests.Stats().Count) } </s> add assert.Equal(t, tc.want, rd.recentRequests.Stats().Count) </s> remove want bool </s> add want int </s> remove func newARPDB() *cmdARPDB { </s> add func newARPDB() (arp *cmdARPDB) { </s> remove func newARPDB() *cmdARPDB { </s> add func newARPDB() (arp *cmdARPDB) {
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/dnsforward/recursiondetector_test.go
assert.Equal(t, tc.want, rd.recentRequests.Stats().Count)
<mask> t.Run(tc.name, func(t *testing.T) { <mask> t.Cleanup(rd.clear) <mask> <mask> rd.add(tc.msg) <mask> <mask> if tc.want { <mask> assert.Equal(t, 1, rd.recentRequests.Stats().Count) <mask> } else { <mask> assert.Zero(t, rd.recentRequests.Stats().Count) <mask> } <mask> }) <mask> } <mask> } <mask> <mask> var sink []byte </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove want: false, </s> add want: 0, </s> remove want: true, </s> add want: 1, </s> remove // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan </s> add // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan </s> remove func newARPDB() *cmdARPDB { </s> add func newARPDB() (arp *cmdARPDB) { </s> remove // parseArpA parses the output of the "arp -a" command on macOS and FreeBSD. </s> add // parseArpA parses the output of the "arp -a -n" command on macOS and FreeBSD.
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/dnsforward/recursiondetector_test.go
// usePrivate is used to store the state of current private RDNS resolving // settings and to react to it's changes.
<mask> type RDNS struct { <mask> exchanger dnsforward.RDNSExchanger <mask> clients *clientsContainer <mask> <mask> // usePrivate is used to store the state of current private RDNS <mask> // resolving settings and to react to it's changes. <mask> usePrivate uint32 <mask> <mask> // ipCh used to pass client's IP to rDNS workerLoop. <mask> ipCh chan net.IP <mask> </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove // address stays here while it's inside clients. After leaving clients // the address will be resolved once again. If the address couldn't be // resolved, cache prevents further attempts to resolve it for some // time. </s> add // address stays here while it's inside clients. After leaving clients the // address will be resolved once again. If the address couldn't be // resolved, cache prevents further attempts to resolve it for some time. </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove args: []string{"-a"}, </s> add // Use -n flag to avoid resolving the hostnames of the neighbors. // By default ARP attempts to resolve the hostnames via DNS. See // man 8 arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan </s> add // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/home/rdns.go
// address stays here while it's inside clients. After leaving clients the // address will be resolved once again. If the address couldn't be // resolved, cache prevents further attempts to resolve it for some time.
<mask> // ipCh used to pass client's IP to rDNS workerLoop. <mask> ipCh chan net.IP <mask> <mask> // ipCache caches the IP addresses to be resolved by rDNS. The resolved <mask> // address stays here while it's inside clients. After leaving clients <mask> // the address will be resolved once again. If the address couldn't be <mask> // resolved, cache prevents further attempts to resolve it for some <mask> // time. <mask> ipCache cache.Cache <mask> } <mask> <mask> // Default rDNS values. <mask> const ( </s> Pull request: 3157 excessive ptrs Merge in DNS/adguard-home from 3157-excessive-ptrs to master Updates #3157. Squashed commit of the following: commit 6803988240dca2f147bb80a5b3f78d7749d2fa14 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:50:01 2022 +0300 aghnet: and again commit 1a7f4d1dbc8fd4d3ae620349917526a75fa71b47 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:49:20 2022 +0300 aghnet: docs again commit d88da1fc7135f3cd03aff10b02d9957c8ffdfd30 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:47:36 2022 +0300 aghnet: imp docs commit c45dbc7800e882c6c4110aab640c32b03046f89a Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 14:41:19 2022 +0300 aghnet: keep alphabetical order commit b61781785d096ef43f60fb4f1905a4ed3cdf7c68 Author: Eugene Burkov <[email protected]> Date: Tue Apr 19 13:50:56 2022 +0300 aghnet: imp code quality commit 578dbd71ed2f2089c69343d7d4bf8bbc29150ace Author: Eugene Burkov <[email protected]> Date: Tue Apr 12 17:02:38 2022 +0300 aghnet: imp arp container </s> remove // usePrivate is used to store the state of current private RDNS // resolving settings and to react to it's changes. </s> add // usePrivate is used to store the state of current private RDNS resolving // settings and to react to it's changes. </s> remove // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan </s> add // IP address HW type Flags HW address Mask Device // 192.168.11.98 0x1 0x2 5a:92:df:a9:7e:28 * wan </s> remove // parseArpAWrt parses the output of the "arp -a" command on OpenWrt. The </s> add // parseArpAWrt parses the output of the "arp -a -n" command on OpenWrt. The </s> remove cmd: "arp", args: []string{"-a"}, </s> add cmd: "arp", // Use -n flag to avoid resolving the hostnames of the neighbors. By // default ARP attempts to resolve the hostnames via DNS. See man 8 // arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"}, </s> remove args: []string{"-a"}, </s> add // Use -n flag to avoid resolving the hostnames of the neighbors. // By default ARP attempts to resolve the hostnames via DNS. See // man 8 arp. // // See also https://github.com/AdguardTeam/AdGuardHome/issues/3157. args: []string{"-a", "-n"},
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/12ee287d0b25cc1fb498e54c4484c995613e9bcb
internal/home/rdns.go
'GO_VERSION': '1.19.5'
<mask> 'name': 'build' <mask> <mask> 'env': <mask> 'GO_VERSION': '1.18.9' <mask> 'NODE_VERSION': '14' <mask> <mask> 'on': <mask> 'push': <mask> 'branches': </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove 'GO_VERSION': '1.18.9' </s> add 'GO_VERSION': '1.19.5' </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove useHTTP3: false, </s> add </s> remove "github.com/lucas-clemente/quic-go" </s> add "github.com/quic-go/quic-go"
[ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
.github/workflows/build.yml
'GO_VERSION': '1.19.5'
<mask> 'name': 'lint' <mask> <mask> 'env': <mask> 'GO_VERSION': '1.18.9' <mask> <mask> 'on': <mask> 'push': <mask> 'tags': <mask> - 'v*' </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove 'GO_VERSION': '1.18.9' </s> add 'GO_VERSION': '1.19.5' </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
.github/workflows/lint.yml
'dockerGo': 'adguard/golang-ubuntu:6.0'
<mask> 'name': 'AdGuard Home - Build and publish release' <mask> # Make sure to sync any changes with the branch overrides below. <mask> 'variables': <mask> 'channel': 'edge' <mask> 'dockerGo': 'adguard/golang-ubuntu:5.4' <mask> <mask> 'stages': <mask> - 'Build frontend': <mask> 'manual': false <mask> 'final': false </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove 'GO_VERSION': '1.18.9' </s> add 'GO_VERSION': '1.19.5' </s> remove // database returns the database if it's opened. It's safe for concurrent use. func (s *StatsCtx) database() (db *bbolt.DB) { s.dbMu.Lock() defer s.dbMu.Unlock() return s.db } // swapDatabase swaps the database with another one and returns it. It's safe // for concurrent use. func (s *StatsCtx) swapDatabase(with *bbolt.DB) (old *bbolt.DB) { s.dbMu.Lock() defer s.dbMu.Unlock() old, s.db = s.db, with return old } </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
bamboo-specs/release.yaml
'dockerGo': 'adguard/golang-ubuntu:6.0'
<mask> # Set the default release channel on the release branch to beta, as we may <mask> # need to build a few of these. <mask> 'variables': <mask> 'channel': 'beta' <mask> 'dockerGo': 'adguard/golang-ubuntu:5.4' <mask> # release-vX.Y.Z branches are the branches from which the actual final release <mask> # is built. <mask> - '^release-v[0-9]+\.[0-9]+\.[0-9]+': <mask> # Disable integration branches for release branches. <mask> 'branch-config': </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove // // TODO(e.burkov): Use atomic.Pointer for accessing db in go1.19. </s> add </s> remove if atomic.LoadUint64(&svc.running) == 1 { </s> add if svc.running.Load() { </s> remove // dbMu protects db. dbMu *sync.Mutex </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
bamboo-specs/release.yaml
'dockerGo': 'adguard/golang-ubuntu:6.0'
<mask> # Set the default release channel on the final branch to release, as these <mask> # are the ones that actually get released. <mask> 'variables': <mask> 'channel': 'release' <mask> 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove // running is an atomic boolean value. Keep it the first value in the // struct to ensure atomic alignment. 0 means that the service is not // running, 1 means that it is running. // // TODO(a.garipov): Use [atomic.Bool] in Go 1.19 or get rid of it // completely. running uint64 </s> add </s> remove // // TODO(e.burkov): Use atomic.Pointer for accessing db in go1.19. </s> add </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0'
[ "keep", "keep", "keep", "keep", "replace" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
bamboo-specs/release.yaml
'dockerGo': 'adguard/golang-ubuntu:6.0'
<mask> 'project-key': 'AGH' <mask> 'key': 'AHBRTSPECS' <mask> 'name': 'AdGuard Home - Build and run tests' <mask> 'variables': <mask> 'dockerGo': 'adguard/golang-ubuntu:5.4' <mask> <mask> 'stages': <mask> - 'Tests': <mask> 'manual': false <mask> 'final': false </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove 'GO_VERSION': '1.18.9' </s> add 'GO_VERSION': '1.19.5' </s> remove 'dockerGo': 'adguard/golang-ubuntu:5.4' </s> add 'dockerGo': 'adguard/golang-ubuntu:6.0' </s> remove 'GO_VERSION': '1.18.9' </s> add 'GO_VERSION': '1.19.5'
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
bamboo-specs/test.yaml
go 1.19
<mask> module github.com/AdguardTeam/AdGuardHome <mask> <mask> go 1.18 <mask> <mask> require ( <mask> github.com/AdguardTeam/dnsproxy v0.47.0 <mask> github.com/AdguardTeam/golibs v0.11.4 <mask> github.com/AdguardTeam/urlfilter v0.16.1 </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove github.com/AdguardTeam/dnsproxy v0.47.0 </s> add // TODO(a.garipov): Use v0.48.0 when it's released. github.com/AdguardTeam/dnsproxy v0.47.1-0.20230207130636-533058b17239 </s> remove go 1.18 </s> add go 1.19 </s> remove github.com/AdguardTeam/dnsproxy v0.47.0 h1:h/ycmA8QhyuwlMYRj2Egtw86+AFxs5wQQT2qskLWyXU= github.com/AdguardTeam/dnsproxy v0.47.0/go.mod h1:ZEkTmTJ2XInT3aVy0mHtEnSWSclpHHj/9hfNXDuAk5k= </s> add github.com/AdguardTeam/dnsproxy v0.47.1-0.20230207130636-533058b17239 h1:n1oOiywOvdeqWLto809bK1rK1EPDkpaSfT/r1OiCVaQ= github.com/AdguardTeam/dnsproxy v0.47.1-0.20230207130636-533058b17239/go.mod h1:+Sdi5ISrjDFbeCsKNqzcC1Ag7pJ5Hh9y+UBNb3dfqJ4= </s> remove github.com/BurntSushi/toml v1.1.0 h1:ksErzDEI1khOiGPgpwuI7x2ebx/uXQNw7xJpn9Eq1+I= github.com/BurntSushi/toml v1.1.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= </s> add </s> remove golang.org/x/vuln v0.0.0-20230130175424-dd534eeddf33 honnef.co/go/tools v0.3.3 </s> add golang.org/x/vuln v0.0.0-20230201222900-4c848edceff1 honnef.co/go/tools v0.4.0
[ "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.mod
// TODO(a.garipov): Use v0.48.0 when it's released. github.com/AdguardTeam/dnsproxy v0.47.1-0.20230207130636-533058b17239
<mask> <mask> go 1.18 <mask> <mask> require ( <mask> github.com/AdguardTeam/dnsproxy v0.47.0 <mask> github.com/AdguardTeam/golibs v0.11.4 <mask> github.com/AdguardTeam/urlfilter v0.16.1 <mask> github.com/NYTimes/gziphandler v1.1.1 <mask> github.com/ameshkov/dnscrypt/v2 v2.2.5 <mask> github.com/digineo/go-ipset/v2 v2.2.1 </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove go 1.18 </s> add go 1.19 </s> remove github.com/BurntSushi/toml v1.1.0 h1:ksErzDEI1khOiGPgpwuI7x2ebx/uXQNw7xJpn9Eq1+I= github.com/BurntSushi/toml v1.1.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= </s> add </s> remove github.com/AdguardTeam/dnsproxy v0.47.0 h1:h/ycmA8QhyuwlMYRj2Egtw86+AFxs5wQQT2qskLWyXU= github.com/AdguardTeam/dnsproxy v0.47.0/go.mod h1:ZEkTmTJ2XInT3aVy0mHtEnSWSclpHHj/9hfNXDuAk5k= </s> add github.com/AdguardTeam/dnsproxy v0.47.1-0.20230207130636-533058b17239 h1:n1oOiywOvdeqWLto809bK1rK1EPDkpaSfT/r1OiCVaQ= github.com/AdguardTeam/dnsproxy v0.47.1-0.20230207130636-533058b17239/go.mod h1:+Sdi5ISrjDFbeCsKNqzcC1Ag7pJ5Hh9y+UBNb3dfqJ4= </s> remove go 1.18 </s> add go 1.19 </s> remove golang.org/x/sys v0.4.0 gopkg.in/natefinch/lumberjack.v2 v2.0.0 </s> add golang.org/x/sys v0.5.0 gopkg.in/natefinch/lumberjack.v2 v2.2.1
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.mod
<mask> github.com/google/renameio v1.0.1 <mask> github.com/google/uuid v1.3.0 <mask> github.com/insomniacslk/dhcp v0.0.0-20221215072855-de60144f33f8 <mask> github.com/kardianos/service v1.2.2 <mask> github.com/lucas-clemente/quic-go v0.31.1 <mask> github.com/mdlayher/ethernet v0.0.0-20220221185849-529eae5b6118 <mask> github.com/mdlayher/netlink v1.7.1 <mask> // TODO(a.garipov): This package is deprecated; find a new one or use <mask> // our own code for that. Perhaps, use gopacket. <mask> github.com/mdlayher/raw v0.1.0 </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove github.com/lucas-clemente/quic-go v0.31.1 h1:O8Od7hfioqq0PMYHDyBkxU2aA7iZ2W9pjbrWuja2YR4= github.com/lucas-clemente/quic-go v0.31.1/go.mod h1:0wFbizLgYzqHqtlyxyCaJKlE7bYgE6JQ+54TLd/Dq2g= github.com/marten-seemann/qpack v0.3.0 h1:UiWstOgT8+znlkDPOg2+3rIuYXJ2CnGDkGUXN6ki6hE= github.com/marten-seemann/qpack v0.3.0/go.mod h1:cGfKPBiP4a9EQdxCwEwI/GEeWAsjSekBvx/X8mh58+g= github.com/marten-seemann/qtls-go1-18 v0.1.4 h1:ogomB+lWV3Vmwiu6RTwDVTMGx+9j7SEi98e8QB35Its= github.com/marten-seemann/qtls-go1-18 v0.1.4/go.mod h1:mJttiymBAByA49mhlNZZGrH5u1uXYZJ+RW28Py7f4m4= github.com/marten-seemann/qtls-go1-19 v0.1.2 h1:ZevAEqKXH0bZmoOBPiqX2h5rhQ7cbZi+X+rlq2JUbCE= github.com/marten-seemann/qtls-go1-19 v0.1.2/go.mod h1:5HTDWtVudo/WFsHKRNuOhWlbdjrfs5JHrYb0wIJqGpI= </s> add </s> remove github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f h1:gl1DCiSk+mrXXBGPm6CEeS2MkJuMVzAOrXg34oVj1QI= github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f/go.mod h1:dDKJzRmX4S37WGHujM7tX//fmj1uioxKzKxz3lo4HJo= </s> add github.com/google/pprof v0.0.0-20230207041349-798e818bf904 h1:4/hN5RUoecvl+RmJRE2YxKWtnnQls6rQjjW5oV7qg2U= github.com/google/pprof v0.0.0-20230207041349-798e818bf904/go.mod h1:uglQLonpP8qtYCYyzA+8c/9qtqgA3qsXGYqCPKARAFg= </s> remove // TODO(a.garipov): use atomic.Bool in Go 1.19. var numAcceptCalls uint32 </s> add var accepted atomic.Bool </s> remove // running is an atomic boolean value. Keep it the first value in the // struct to ensure atomic alignment. 0 means that the service is not // running, 1 means that it is running. // // TODO(a.garipov): Use [atomic.Bool] in Go 1.19 or get rid of it // completely. running uint64 </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.mod
github.com/quic-go/quic-go v0.32.0
<mask> github.com/mdlayher/raw v0.1.0 <mask> github.com/miekg/dns v1.1.50 <mask> github.com/stretchr/testify v1.8.1 <mask> github.com/ti-mo/netfilter v0.5.0 <mask> go.etcd.io/bbolt v1.3.7 <mask> golang.org/x/crypto v0.5.0 <mask> golang.org/x/exp v0.0.0-20230206171751-46f607a40771 </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 </s> remove golang.org/x/sys v0.4.0 gopkg.in/natefinch/lumberjack.v2 v2.0.0 </s> add golang.org/x/sys v0.5.0 gopkg.in/natefinch/lumberjack.v2 v2.2.1 </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 h1:BEABXpNXLEz0WxtA+6CQIz2xkg80e+1zrhWyMcq8VzE= golang.org/x/exp v0.0.0-20230131160201-f062dba9d201/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 h1:xP7rWLUr1e1n2xkK5YB4LI0hPEy3LJC6Wk+D4pGlOJg= golang.org/x/exp v0.0.0-20230206171751-46f607a40771/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 h1:BEABXpNXLEz0WxtA+6CQIz2xkg80e+1zrhWyMcq8VzE= golang.org/x/exp v0.0.0-20230131160201-f062dba9d201/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201 h1:O1QcdQUR9htWjzzsXVFPX+RJ3n1P/u/5bsQR8dbs5BY= golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk= </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 h1:xP7rWLUr1e1n2xkK5YB4LI0hPEy3LJC6Wk+D4pGlOJg= golang.org/x/exp v0.0.0-20230206171751-46f607a40771/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771 h1:k+aVvDl4NAHQwLMtHN6wB0DL0737J8ScFNIufmap3/s= golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk= </s> remove golang.org/x/sys v0.4.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect </s> add golang.org/x/sys v0.5.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect
[ "keep", "add", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.mod
golang.org/x/exp v0.0.0-20230206171751-46f607a40771
<mask> github.com/stretchr/testify v1.8.1 <mask> github.com/ti-mo/netfilter v0.5.0 <mask> go.etcd.io/bbolt v1.3.7 <mask> golang.org/x/crypto v0.5.0 <mask> golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 <mask> golang.org/x/net v0.5.0 <mask> golang.org/x/sys v0.4.0 <mask> gopkg.in/natefinch/lumberjack.v2 v2.0.0 <mask> gopkg.in/yaml.v3 v3.0.1 <mask> howett.net/plist v1.0.0 </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove golang.org/x/sys v0.4.0 gopkg.in/natefinch/lumberjack.v2 v2.0.0 </s> add golang.org/x/sys v0.5.0 gopkg.in/natefinch/lumberjack.v2 v2.2.1 </s> remove golang.org/x/sys v0.4.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect </s> add golang.org/x/sys v0.5.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 h1:BEABXpNXLEz0WxtA+6CQIz2xkg80e+1zrhWyMcq8VzE= golang.org/x/exp v0.0.0-20230131160201-f062dba9d201/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 h1:xP7rWLUr1e1n2xkK5YB4LI0hPEy3LJC6Wk+D4pGlOJg= golang.org/x/exp v0.0.0-20230206171751-46f607a40771/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= </s> remove gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.mod
golang.org/x/sys v0.5.0 gopkg.in/natefinch/lumberjack.v2 v2.2.1
<mask> go.etcd.io/bbolt v1.3.7 <mask> golang.org/x/crypto v0.5.0 <mask> golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 <mask> golang.org/x/net v0.5.0 <mask> golang.org/x/sys v0.4.0 <mask> gopkg.in/natefinch/lumberjack.v2 v2.0.0 <mask> gopkg.in/yaml.v3 v3.0.1 <mask> howett.net/plist v1.0.0 <mask> ) <mask> <mask> require ( </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 </s> remove golang.org/x/sys v0.4.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect </s> add golang.org/x/sys v0.5.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect </s> remove gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= </s> add </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 h1:BEABXpNXLEz0WxtA+6CQIz2xkg80e+1zrhWyMcq8VzE= golang.org/x/exp v0.0.0-20230131160201-f062dba9d201/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 h1:xP7rWLUr1e1n2xkK5YB4LI0hPEy3LJC6Wk+D4pGlOJg= golang.org/x/exp v0.0.0-20230206171751-46f607a40771/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc=
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.mod
<mask> howett.net/plist v1.0.0 <mask> ) <mask> <mask> require ( <mask> github.com/BurntSushi/toml v1.1.0 // indirect <mask> github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect <mask> github.com/aead/poly1305 v0.0.0-20180717145839-3fee0db0b635 // indirect <mask> github.com/ameshkov/dnsstamps v1.0.3 // indirect <mask> github.com/beefsack/go-rate v0.0.0-20220214233405-116f4ca011a0 // indirect <mask> github.com/bluele/gcache v0.0.2 // indirect </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f // indirect </s> add github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect </s> remove github.com/marten-seemann/qpack v0.3.0 // indirect github.com/marten-seemann/qtls-go1-18 v0.1.4 // indirect github.com/marten-seemann/qtls-go1-19 v0.1.2 // indirect </s> add </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 // indirect golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201 // indirect </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 // indirect golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771 // indirect </s> remove golang.org/x/sys v0.4.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect </s> add golang.org/x/sys v0.5.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.mod
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
<mask> github.com/bluele/gcache v0.0.2 // indirect <mask> github.com/davecgh/go-spew v1.1.1 // indirect <mask> github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect <mask> github.com/golang/mock v1.6.0 // indirect <mask> github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f // indirect <mask> github.com/josharian/native v1.1.0 // indirect <mask> github.com/marten-seemann/qpack v0.3.0 // indirect <mask> github.com/marten-seemann/qtls-go1-18 v0.1.4 // indirect <mask> github.com/marten-seemann/qtls-go1-19 v0.1.2 // indirect <mask> github.com/mdlayher/packet v1.1.1 // indirect </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove github.com/marten-seemann/qpack v0.3.0 // indirect github.com/marten-seemann/qtls-go1-18 v0.1.4 // indirect github.com/marten-seemann/qtls-go1-19 v0.1.2 // indirect </s> add </s> remove github.com/BurntSushi/toml v1.1.0 // indirect </s> add </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 // indirect golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201 // indirect </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 // indirect golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771 // indirect </s> remove golang.org/x/sys v0.4.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect </s> add golang.org/x/sys v0.5.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.mod
<mask> github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect <mask> github.com/golang/mock v1.6.0 // indirect <mask> github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f // indirect <mask> github.com/josharian/native v1.1.0 // indirect <mask> github.com/marten-seemann/qpack v0.3.0 // indirect <mask> github.com/marten-seemann/qtls-go1-18 v0.1.4 // indirect <mask> github.com/marten-seemann/qtls-go1-19 v0.1.2 // indirect <mask> github.com/mdlayher/packet v1.1.1 // indirect <mask> github.com/mdlayher/socket v0.4.0 // indirect <mask> github.com/onsi/ginkgo/v2 v2.8.0 // indirect <mask> github.com/patrickmn/go-cache v2.1.0+incompatible // indirect <mask> github.com/pkg/errors v0.9.1 // indirect </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f // indirect </s> add github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 // indirect golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201 // indirect </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 // indirect golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771 // indirect </s> remove golang.org/x/sys v0.4.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect </s> add golang.org/x/sys v0.5.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect </s> remove github.com/BurntSushi/toml v1.1.0 // indirect </s> add
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.mod
github.com/quic-go/qpack v0.4.0 // indirect github.com/quic-go/qtls-go1-18 v0.2.0 // indirect github.com/quic-go/qtls-go1-19 v0.2.0 // indirect github.com/quic-go/qtls-go1-20 v0.1.0 // indirect
<mask> github.com/pkg/errors v0.9.1 // indirect <mask> github.com/pmezard/go-difflib v1.0.0 // indirect <mask> github.com/u-root/uio v0.0.0-20221213070652-c3537552635f // indirect <mask> golang.org/x/mod v0.7.0 // indirect <mask> golang.org/x/sync v0.1.0 // indirect <mask> golang.org/x/text v0.6.0 // indirect <mask> golang.org/x/tools v0.5.0 // indirect <mask> ) </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove golang.org/x/sys v0.4.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect </s> add golang.org/x/sys v0.5.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 // indirect golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201 // indirect </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 // indirect golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771 // indirect </s> remove github.com/marten-seemann/qpack v0.3.0 // indirect github.com/marten-seemann/qtls-go1-18 v0.1.4 // indirect github.com/marten-seemann/qtls-go1-19 v0.1.2 // indirect </s> add </s> remove github.com/BurntSushi/toml v1.1.0 // indirect </s> add </s> remove github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f // indirect </s> add github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
[ "keep", "add", "keep", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.mod
github.com/AdguardTeam/dnsproxy v0.47.1-0.20230207130636-533058b17239 h1:n1oOiywOvdeqWLto809bK1rK1EPDkpaSfT/r1OiCVaQ= github.com/AdguardTeam/dnsproxy v0.47.1-0.20230207130636-533058b17239/go.mod h1:+Sdi5ISrjDFbeCsKNqzcC1Ag7pJ5Hh9y+UBNb3dfqJ4=
<mask> github.com/AdguardTeam/dnsproxy v0.47.0 h1:h/ycmA8QhyuwlMYRj2Egtw86+AFxs5wQQT2qskLWyXU= <mask> github.com/AdguardTeam/dnsproxy v0.47.0/go.mod h1:ZEkTmTJ2XInT3aVy0mHtEnSWSclpHHj/9hfNXDuAk5k= <mask> github.com/AdguardTeam/golibs v0.4.0/go.mod h1:skKsDKIBB7kkFflLJBpfGX+G8QFTx0WKUzB6TIgtUj4= <mask> github.com/AdguardTeam/golibs v0.10.4/go.mod h1:rSfQRGHIdgfxriDDNgNJ7HmE5zRoURq8R+VdR81Zuzw= <mask> github.com/AdguardTeam/golibs v0.11.4 h1:IltyvxwCTN+xxJF5sh6VadF8Zfbf8elgCm9dgijSVzM= <mask> github.com/AdguardTeam/golibs v0.11.4/go.mod h1:87bN2x4VsTritptE3XZg9l8T6gznWsIxHBcQ1DeRIXA= <mask> github.com/AdguardTeam/gomitmproxy v0.2.0/go.mod h1:Qdv0Mktnzer5zpdpi5rAwixNJzW2FN91LjKJCkVbYGU= </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove go 1.18 </s> add go 1.19 </s> remove github.com/AdguardTeam/dnsproxy v0.47.0 </s> add // TODO(a.garipov): Use v0.48.0 when it's released. github.com/AdguardTeam/dnsproxy v0.47.1-0.20230207130636-533058b17239 </s> remove github.com/BurntSushi/toml v1.1.0 h1:ksErzDEI1khOiGPgpwuI7x2ebx/uXQNw7xJpn9Eq1+I= github.com/BurntSushi/toml v1.1.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= </s> add </s> remove honnef.co/go/tools v0.3.3 h1:oDx7VAwstgpYpb3wv0oxiZlxY+foCpRAwY7Vk6XpAgA= honnef.co/go/tools v0.3.3/go.mod h1:jzwdWgg7Jdq75wlfblQxO4neNaFFSvgc1tD5Wv8U0Yw= </s> add honnef.co/go/tools v0.4.0 h1:lyXVV1c8wUBJRKqI8JgIpT8TW1VDagfYYaxbKa/HoL8= honnef.co/go/tools v0.4.0/go.mod h1:36ZgoUOrqOk1GxwHhyryEkq8FQWkUO2xGuSMhUCcdvA=
[ "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.sum
<mask> github.com/AdguardTeam/golibs v0.11.4/go.mod h1:87bN2x4VsTritptE3XZg9l8T6gznWsIxHBcQ1DeRIXA= <mask> github.com/AdguardTeam/gomitmproxy v0.2.0/go.mod h1:Qdv0Mktnzer5zpdpi5rAwixNJzW2FN91LjKJCkVbYGU= <mask> github.com/AdguardTeam/urlfilter v0.16.1 h1:ZPi0rjqo8cQf2FVdzo6cqumNoHZx2KPXj2yZa1A5BBw= <mask> github.com/AdguardTeam/urlfilter v0.16.1/go.mod h1:46YZDOV1+qtdRDuhZKVPSSp7JWWes0KayqHrKAFBdEI= <mask> github.com/BurntSushi/toml v1.1.0 h1:ksErzDEI1khOiGPgpwuI7x2ebx/uXQNw7xJpn9Eq1+I= <mask> github.com/BurntSushi/toml v1.1.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= <mask> github.com/NYTimes/gziphandler v1.1.1 h1:ZUDjpQae29j0ryrS0u/B8HZfJBtBQHjqw2rQ2cqUQ3I= <mask> github.com/NYTimes/gziphandler v1.1.1/go.mod h1:n/CVRwUEOgIxrgPvAQhUUr9oeUtvrhMomdKFjzJNB0c= <mask> github.com/StackExchange/wmi v1.2.1 h1:VIkavFPXSjcnS+O8yTq7NI32k0R5Aj+v39y29VYDOSA= <mask> github.com/StackExchange/wmi v1.2.1/go.mod h1:rcmrprowKIVzvc+NUiLncP2uuArMWLCbu9SBzvHz7e8= <mask> github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da h1:KjTM2ks9d14ZYCvmHS9iAKVt9AyzRSqNU1qabPih5BY= </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove github.com/AdguardTeam/dnsproxy v0.47.0 </s> add // TODO(a.garipov): Use v0.48.0 when it's released. github.com/AdguardTeam/dnsproxy v0.47.1-0.20230207130636-533058b17239 </s> remove github.com/AdguardTeam/dnsproxy v0.47.0 h1:h/ycmA8QhyuwlMYRj2Egtw86+AFxs5wQQT2qskLWyXU= github.com/AdguardTeam/dnsproxy v0.47.0/go.mod h1:ZEkTmTJ2XInT3aVy0mHtEnSWSclpHHj/9hfNXDuAk5k= </s> add github.com/AdguardTeam/dnsproxy v0.47.1-0.20230207130636-533058b17239 h1:n1oOiywOvdeqWLto809bK1rK1EPDkpaSfT/r1OiCVaQ= github.com/AdguardTeam/dnsproxy v0.47.1-0.20230207130636-533058b17239/go.mod h1:+Sdi5ISrjDFbeCsKNqzcC1Ag7pJ5Hh9y+UBNb3dfqJ4= </s> remove github.com/BurntSushi/toml v1.1.0 // indirect </s> add </s> remove go 1.18 </s> add go 1.19 </s> remove github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f // indirect </s> add github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.sum
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 h1:4/hN5RUoecvl+RmJRE2YxKWtnnQls6rQjjW5oV7qg2U= github.com/google/pprof v0.0.0-20230207041349-798e818bf904/go.mod h1:uglQLonpP8qtYCYyzA+8c/9qtqgA3qsXGYqCPKARAFg=
<mask> github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= <mask> github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= <mask> github.com/google/gopacket v1.1.19 h1:ves8RnFZPGiFnTS0uPQStjwru6uO6h+nlr9j6fL7kF8= <mask> github.com/google/gopacket v1.1.19/go.mod h1:iJ8V8n6KS+z2U1A8pUwu8bW5SyEMkXJB8Yo/Vo+TKTo= <mask> github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f h1:gl1DCiSk+mrXXBGPm6CEeS2MkJuMVzAOrXg34oVj1QI= <mask> github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f/go.mod h1:dDKJzRmX4S37WGHujM7tX//fmj1uioxKzKxz3lo4HJo= <mask> github.com/google/renameio v1.0.1 h1:Lh/jXZmvZxb0BBeSY5VKEfidcbcbenKjZFzM/q0fSeU= <mask> github.com/google/renameio v1.0.1/go.mod h1:t/HQoYBZSsWSNK35C6CO/TpPLDVWvxOHboWUAweKUpk= <mask> github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= <mask> github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= <mask> github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove github.com/lucas-clemente/quic-go v0.31.1 </s> add </s> remove github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f // indirect </s> add github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect </s> remove github.com/marten-seemann/qpack v0.3.0 // indirect github.com/marten-seemann/qtls-go1-18 v0.1.4 // indirect github.com/marten-seemann/qtls-go1-19 v0.1.2 // indirect </s> add </s> remove honnef.co/go/tools v0.3.3 h1:oDx7VAwstgpYpb3wv0oxiZlxY+foCpRAwY7Vk6XpAgA= honnef.co/go/tools v0.3.3/go.mod h1:jzwdWgg7Jdq75wlfblQxO4neNaFFSvgc1tD5Wv8U0Yw= </s> add honnef.co/go/tools v0.4.0 h1:lyXVV1c8wUBJRKqI8JgIpT8TW1VDagfYYaxbKa/HoL8= honnef.co/go/tools v0.4.0/go.mod h1:36ZgoUOrqOk1GxwHhyryEkq8FQWkUO2xGuSMhUCcdvA=
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.sum
<mask> github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= <mask> github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= <mask> github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= <mask> github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= <mask> github.com/lucas-clemente/quic-go v0.31.1 h1:O8Od7hfioqq0PMYHDyBkxU2aA7iZ2W9pjbrWuja2YR4= <mask> github.com/lucas-clemente/quic-go v0.31.1/go.mod h1:0wFbizLgYzqHqtlyxyCaJKlE7bYgE6JQ+54TLd/Dq2g= <mask> github.com/marten-seemann/qpack v0.3.0 h1:UiWstOgT8+znlkDPOg2+3rIuYXJ2CnGDkGUXN6ki6hE= <mask> github.com/marten-seemann/qpack v0.3.0/go.mod h1:cGfKPBiP4a9EQdxCwEwI/GEeWAsjSekBvx/X8mh58+g= <mask> github.com/marten-seemann/qtls-go1-18 v0.1.4 h1:ogomB+lWV3Vmwiu6RTwDVTMGx+9j7SEi98e8QB35Its= <mask> github.com/marten-seemann/qtls-go1-18 v0.1.4/go.mod h1:mJttiymBAByA49mhlNZZGrH5u1uXYZJ+RW28Py7f4m4= <mask> github.com/marten-seemann/qtls-go1-19 v0.1.2 h1:ZevAEqKXH0bZmoOBPiqX2h5rhQ7cbZi+X+rlq2JUbCE= <mask> github.com/marten-seemann/qtls-go1-19 v0.1.2/go.mod h1:5HTDWtVudo/WFsHKRNuOhWlbdjrfs5JHrYb0wIJqGpI= <mask> github.com/mdlayher/ethernet v0.0.0-20190606142754-0394541c37b7/go.mod h1:U6ZQobyTjI/tJyq2HG+i/dfSoFUt8/aZCM+GKtmFk/Y= <mask> github.com/mdlayher/ethernet v0.0.0-20220221185849-529eae5b6118 h1:2oDp6OOhLxQ9JBoUuysVz9UZ9uI6oLUbvAZu0x8o+vE= <mask> github.com/mdlayher/ethernet v0.0.0-20220221185849-529eae5b6118/go.mod h1:ZFUnHIVchZ9lJoWoEGUg8Q3M4U8aNNWA3CVSUTkW4og= <mask> github.com/mdlayher/netlink v0.0.0-20190313131330-258ea9dff42c/go.mod h1:eQB3mZE4aiYnlUsyGGCOpPETfdQq4Jhsgf1fk3cwQaA= <mask> github.com/mdlayher/netlink v0.0.0-20190409211403-11939a169225/go.mod h1:eQB3mZE4aiYnlUsyGGCOpPETfdQq4Jhsgf1fk3cwQaA= </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove github.com/lucas-clemente/quic-go v0.31.1 </s> add </s> remove github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f // indirect </s> add github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect </s> remove github.com/marten-seemann/qpack v0.3.0 // indirect github.com/marten-seemann/qtls-go1-18 v0.1.4 // indirect github.com/marten-seemann/qtls-go1-19 v0.1.2 // indirect </s> add </s> remove github.com/BurntSushi/toml v1.1.0 h1:ksErzDEI1khOiGPgpwuI7x2ebx/uXQNw7xJpn9Eq1+I= github.com/BurntSushi/toml v1.1.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= </s> add
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.sum
github.com/quic-go/qpack v0.4.0 h1:Cr9BXA1sQS2SmDUWjSofMPNKmvF6IiIfDRmgU0w1ZCo= github.com/quic-go/qpack v0.4.0/go.mod h1:UZVnYIfi5GRk+zI9UMaCPsmZ2xKJP7XBUvVyT1Knj9A= github.com/quic-go/qtls-go1-18 v0.2.0 h1:5ViXqBZ90wpUcZS0ge79rf029yx0dYB0McyPJwqqj7U= github.com/quic-go/qtls-go1-18 v0.2.0/go.mod h1:moGulGHK7o6O8lSPSZNoOwcLvJKJ85vVNc7oJFD65bc= github.com/quic-go/qtls-go1-19 v0.2.0 h1:Cvn2WdhyViFUHoOqK52i51k4nDX8EwIh5VJiVM4nttk= github.com/quic-go/qtls-go1-19 v0.2.0/go.mod h1:ySOI96ew8lnoKPtSqx2BlI5wCpUVPT05RMAlajtnyOI= github.com/quic-go/qtls-go1-20 v0.1.0 h1:d1PK3ErFy9t7zxKsG3NXBJXZjp/kMLoIb3y/kV54oAI= github.com/quic-go/qtls-go1-20 v0.1.0/go.mod h1:JKtK6mjbAVcUTN/9jZpvLbGxvdWIKS8uT7EiStoU1SM= github.com/quic-go/quic-go v0.32.0 h1:lY02md31s1JgPiiyfqJijpu/UX/Iun304FI3yUqX7tA= github.com/quic-go/quic-go v0.32.0/go.mod h1:/fCsKANhQIeD5l76c2JFU+07gVE3KaA0FP+0zMWwfwo=
<mask> github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= <mask> github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= <mask> github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= <mask> github.com/shirou/gopsutil/v3 v3.21.8 h1:nKct+uP0TV8DjjNiHanKf8SAuub+GNsbrOtM9Nl9biA= <mask> github.com/shirou/gopsutil/v3 v3.21.8/go.mod h1:YWp/H8Qs5fVmf17v7JNZzA0mPJ+mS2e9JdiUF9LlKzQ= <mask> github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= <mask> github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= <mask> github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= <mask> github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove github.com/securego/gosec/v2 v2.14.0 h1:U1hfs0oBackChXA72plCYVA4cOlQ4gO+209dHiSNZbI= github.com/securego/gosec/v2 v2.14.0/go.mod h1:Ff03zEi5NwSOfXj9nFpBfhbWTtROCkg9N+9goggrYn4= </s> add github.com/securego/gosec/v2 v2.15.0 h1:v4Ym7FF58/jlykYmmhZ7mTm7FQvN/setNm++0fgIAtw= github.com/securego/gosec/v2 v2.15.0/go.mod h1:VOjTrZOkUtSDt2QLSJmQBMWnvwiQPEjg0l+5juIqGk8= </s> remove github.com/onsi/ginkgo/v2 v2.3.1 h1:8SbseP7qM32WcvE6VaN6vfXxv698izmsJ1UQX9ve7T8= github.com/onsi/gomega v1.22.1 h1:pY8O4lBfsHKZHM/6nrxkhVPUznOlIu3quZcKP/M20KI= </s> add github.com/onsi/ginkgo/v2 v2.8.0 h1:pAM+oBNPrpXRs+E/8spkeGx9QgekbRVyr74EUvRVOUI= github.com/onsi/gomega v1.26.0 h1:03cDLK28U6hWvCAns6NeydX3zIm4SF3ci69ulidS32Q= </s> remove gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= </s> add </s> remove honnef.co/go/tools v0.3.3 h1:oDx7VAwstgpYpb3wv0oxiZlxY+foCpRAwY7Vk6XpAgA= honnef.co/go/tools v0.3.3/go.mod h1:jzwdWgg7Jdq75wlfblQxO4neNaFFSvgc1tD5Wv8U0Yw= </s> add honnef.co/go/tools v0.4.0 h1:lyXVV1c8wUBJRKqI8JgIpT8TW1VDagfYYaxbKa/HoL8= honnef.co/go/tools v0.4.0/go.mod h1:36ZgoUOrqOk1GxwHhyryEkq8FQWkUO2xGuSMhUCcdvA=
[ "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.sum
golang.org/x/exp v0.0.0-20230206171751-46f607a40771 h1:xP7rWLUr1e1n2xkK5YB4LI0hPEy3LJC6Wk+D4pGlOJg= golang.org/x/exp v0.0.0-20230206171751-46f607a40771/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc=
<mask> golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= <mask> golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= <mask> golang.org/x/crypto v0.5.0 h1:U/0M97KRkSFvyD/3FSmdP5W5swImpNgle/EHFhOsQPE= <mask> golang.org/x/crypto v0.5.0/go.mod h1:NK/OQwhpMQP3MwtdjgLlYHnH9ebylxKWv3e0fK+mkQU= <mask> golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 h1:BEABXpNXLEz0WxtA+6CQIz2xkg80e+1zrhWyMcq8VzE= <mask> golang.org/x/exp v0.0.0-20230131160201-f062dba9d201/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= <mask> golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= <mask> golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= <mask> golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= <mask> golang.org/x/mod v0.7.0 h1:LapD9S96VoQRhi/GrNTqeBJFrUjs5UHCAtTlgwA5oZA= <mask> golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 h1:BEABXpNXLEz0WxtA+6CQIz2xkg80e+1zrhWyMcq8VzE= golang.org/x/exp v0.0.0-20230131160201-f062dba9d201/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201 h1:O1QcdQUR9htWjzzsXVFPX+RJ3n1P/u/5bsQR8dbs5BY= golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk= </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 h1:xP7rWLUr1e1n2xkK5YB4LI0hPEy3LJC6Wk+D4pGlOJg= golang.org/x/exp v0.0.0-20230206171751-46f607a40771/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771 h1:k+aVvDl4NAHQwLMtHN6wB0DL0737J8ScFNIufmap3/s= golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk= </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 </s> remove golang.org/x/sys v0.4.0 gopkg.in/natefinch/lumberjack.v2 v2.0.0 </s> add golang.org/x/sys v0.5.0 gopkg.in/natefinch/lumberjack.v2 v2.2.1 </s> remove golang.org/x/sys v0.4.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect </s> add golang.org/x/sys v0.5.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.sum
golang.org/x/sys v0.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
<mask> golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= <mask> golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= <mask> golang.org/x/sys v0.0.0-20220622161953-175b2fd9d664/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= <mask> golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= <mask> golang.org/x/sys v0.4.0 h1:Zr2JFtRQNX3BCZ8YtxRE9hNJYC8J6I1MVbMg6owUp18= <mask> golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= <mask> golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= <mask> golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= <mask> golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= <mask> golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= <mask> golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove golang.org/x/sys v0.4.0 h1:Zr2JFtRQNX3BCZ8YtxRE9hNJYC8J6I1MVbMg6owUp18= golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= </s> add golang.org/x/sys v0.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= </s> remove golang.org/x/text v0.3.8 h1:nAL+RVCQ9uMn3vJZbV+MRnydTJFPf8qqY42YiA6MrqY= </s> add golang.org/x/text v0.6.0 h1:3XmdazWV+ubf7QgHSTWeykHOci5oeekaGJBLkrkaw4k= </s> remove golang.org/x/sys v0.4.0 gopkg.in/natefinch/lumberjack.v2 v2.0.0 </s> add golang.org/x/sys v0.5.0 gopkg.in/natefinch/lumberjack.v2 v2.2.1 </s> remove golang.org/x/sys v0.4.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect </s> add golang.org/x/sys v0.5.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.sum
gopkg.in/natefinch/lumberjack.v2 v2.2.1 h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc= gopkg.in/natefinch/lumberjack.v2 v2.2.1/go.mod h1:YD8tP3GAjkrDg1eZH7EGmyESg/lsYskCTPBJVb9jqSc=
<mask> google.golang.org/protobuf v1.28.0 h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw= <mask> gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= <mask> gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f h1:BLraFXnmrev5lT+xlilqcH8XK9/i0At2xKjWk4p6zsU= <mask> gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= <mask> gopkg.in/natefinch/lumberjack.v2 v2.0.0 h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8= <mask> gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= <mask> gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0/go.mod h1:WDnlLJ4WF5VGsH/HVa3CI79GS0ol3YnhVnKP89i0kNg= <mask> gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= <mask> gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= <mask> gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= <mask> gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= </s> add </s> remove gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= </s> add </s> remove golang.org/x/vuln v0.0.0-20230130175424-dd534eeddf33 h1:je2aB5nnlseeGvJy5clg6EyC3jjbbCNsRDroC3qQJsA= golang.org/x/vuln v0.0.0-20230130175424-dd534eeddf33/go.mod h1:cBP4HMKv0X+x96j8IJWCKk0eqpakBmmHjKGSSC0NaYE= </s> add golang.org/x/vuln v0.0.0-20230201222900-4c848edceff1 h1:HRexnHfiDA2hkPNMDgf3vxabRMeC+XeS8tCKP9olVbs= golang.org/x/vuln v0.0.0-20230201222900-4c848edceff1/go.mod h1:cBP4HMKv0X+x96j8IJWCKk0eqpakBmmHjKGSSC0NaYE= </s> remove honnef.co/go/tools v0.3.3 h1:oDx7VAwstgpYpb3wv0oxiZlxY+foCpRAwY7Vk6XpAgA= honnef.co/go/tools v0.3.3/go.mod h1:jzwdWgg7Jdq75wlfblQxO4neNaFFSvgc1tD5Wv8U0Yw= </s> add honnef.co/go/tools v0.4.0 h1:lyXVV1c8wUBJRKqI8JgIpT8TW1VDagfYYaxbKa/HoL8= honnef.co/go/tools v0.4.0/go.mod h1:36ZgoUOrqOk1GxwHhyryEkq8FQWkUO2xGuSMhUCcdvA= </s> remove golang.org/x/sys v0.4.0 gopkg.in/natefinch/lumberjack.v2 v2.0.0 </s> add golang.org/x/sys v0.5.0 gopkg.in/natefinch/lumberjack.v2 v2.2.1
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.sum
<mask> gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= <mask> gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0/go.mod h1:WDnlLJ4WF5VGsH/HVa3CI79GS0ol3YnhVnKP89i0kNg= <mask> gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= <mask> gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= <mask> gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= <mask> gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= <mask> gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= <mask> gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= <mask> howett.net/plist v1.0.0 h1:7CrbWYbPPO/PyNy38b2EB/+gYbjCe2DXBxgtOOZbSQM= <mask> howett.net/plist v1.0.0/go.mod h1:lqaXoTrLY4hg8tnEzNru53gicrbv7rrk+2xJA/7hw9g= </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove gopkg.in/natefinch/lumberjack.v2 v2.0.0 h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8= gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= </s> add gopkg.in/natefinch/lumberjack.v2 v2.2.1 h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc= gopkg.in/natefinch/lumberjack.v2 v2.2.1/go.mod h1:YD8tP3GAjkrDg1eZH7EGmyESg/lsYskCTPBJVb9jqSc= </s> remove gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= </s> add </s> remove honnef.co/go/tools v0.3.3 h1:oDx7VAwstgpYpb3wv0oxiZlxY+foCpRAwY7Vk6XpAgA= honnef.co/go/tools v0.3.3/go.mod h1:jzwdWgg7Jdq75wlfblQxO4neNaFFSvgc1tD5Wv8U0Yw= </s> add honnef.co/go/tools v0.4.0 h1:lyXVV1c8wUBJRKqI8JgIpT8TW1VDagfYYaxbKa/HoL8= honnef.co/go/tools v0.4.0/go.mod h1:36ZgoUOrqOk1GxwHhyryEkq8FQWkUO2xGuSMhUCcdvA= </s> remove golang.org/x/sys v0.4.0 gopkg.in/natefinch/lumberjack.v2 v2.0.0 </s> add golang.org/x/sys v0.5.0 gopkg.in/natefinch/lumberjack.v2 v2.2.1 </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
go.sum
"github.com/quic-go/quic-go"
<mask> <mask> "github.com/AdguardTeam/dnsproxy/proxy" <mask> "github.com/AdguardTeam/golibs/errors" <mask> "github.com/AdguardTeam/golibs/netutil" <mask> "github.com/lucas-clemente/quic-go" <mask> ) <mask> <mask> // ValidateClientID returns an error if id is not a valid ClientID. <mask> func ValidateClientID(id string) (err error) { <mask> err = netutil.ValidateDomainNameLabel(id) </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove "github.com/lucas-clemente/quic-go" "github.com/lucas-clemente/quic-go/http3" </s> add "github.com/quic-go/quic-go" "github.com/quic-go/quic-go/http3" </s> remove "github.com/lucas-clemente/quic-go" </s> add "github.com/quic-go/quic-go" </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove var usePrivate uint32 if r.exchanger.ResolvesPrivatePTR() { usePrivate = 1 } if atomic.CompareAndSwapUint32(&r.usePrivate, 1-usePrivate, usePrivate) { </s> add usePrivate := r.exchanger.ResolvesPrivatePTR() if r.usePrivate.CompareAndSwap(!usePrivate, usePrivate) { </s> remove func newHTTPReq(cliSrvName string, useHTTP3 bool) (r *http.Request) { </s> add func newHTTPReq(cliSrvName string) (r *http.Request) {
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid.go
srvName = pctx.HTTPRequest.TLS.ServerName
<mask> // clientServerName returns the TLS server name based on the protocol. <mask> func clientServerName(pctx *proxy.DNSContext, proto proxy.Proto) (srvName string, err error) { <mask> switch proto { <mask> case proxy.ProtoHTTPS: <mask> // github.com/lucas-clemente/quic-go seems to not populate the TLS <mask> // field. So, if the request comes over HTTP/3, use the Host header <mask> // value as the server name. <mask> // <mask> // See https://github.com/lucas-clemente/quic-go/issues/2879. <mask> // <mask> // TODO(a.garipov): Remove this crutch once they fix it. <mask> r := pctx.HTTPRequest <mask> if r.ProtoAtLeast(3, 0) { <mask> var host string <mask> host, err = netutil.SplitHost(r.Host) <mask> if err != nil { <mask> return "", fmt.Errorf("parsing host: %w", err) <mask> } <mask> <mask> srvName = host <mask> } else if connState := r.TLS; connState != nil { <mask> srvName = r.TLS.ServerName <mask> } <mask> case proxy.ProtoQUIC: <mask> qConn := pctx.QUICConnection <mask> conn, ok := qConn.(quicConnection) <mask> if !ok { <mask> return "", fmt.Errorf("pctx conn of proto %s is %T, want quic.Connection", proto, qConn) </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove tx, err := s.db.Begin(true) </s> add tx, err := s.db.Load().Begin(true) </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove var usePrivate uint32 if r.exchanger.ResolvesPrivatePTR() { usePrivate = 1 } if atomic.CompareAndSwapUint32(&r.usePrivate, 1-usePrivate, usePrivate) { </s> add usePrivate := r.exchanger.ResolvesPrivatePTR() if r.usePrivate.CompareAndSwap(!usePrivate, usePrivate) { </s> remove if err != nil { atomic.StoreUint64(&svc.running, 0) } else { atomic.StoreUint64(&svc.running, 1) } </s> add svc.running.Store(err == nil)
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid.go
"github.com/quic-go/quic-go"
<mask> "testing" <mask> <mask> "github.com/AdguardTeam/dnsproxy/proxy" <mask> "github.com/AdguardTeam/golibs/testutil" <mask> "github.com/lucas-clemente/quic-go" <mask> "github.com/stretchr/testify/assert" <mask> ) <mask> <mask> // testTLSConn is a tlsConn for tests. <mask> type testTLSConn struct { </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove "github.com/lucas-clemente/quic-go" </s> add "github.com/quic-go/quic-go" </s> remove "github.com/lucas-clemente/quic-go/http3" </s> add "github.com/quic-go/quic-go/http3" </s> remove func newHTTPReq(cliSrvName string, useHTTP3 bool) (r *http.Request) { </s> add func newHTTPReq(cliSrvName string) (r *http.Request) { </s> remove // // TODO(e.burkov): Use atomic.Pointer for accessing db in go1.19. </s> add </s> remove // running is an atomic boolean value. Keep it the first value in the // struct to ensure atomic alignment. 0 means that the service is not // running, 1 means that it is running. // // TODO(a.garipov): Use [atomic.Bool] in Go 1.19 or get rid of it // completely. running uint64 </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> cliSrvName string <mask> wantClientID string <mask> wantErrMsg string <mask> strictSNI bool <mask> useHTTP3 bool <mask> }{{ <mask> name: "udp", <mask> proto: proxy.ProtoUDP, <mask> hostSrvName: "", <mask> cliSrvName: "", </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> cliSrvName: "", <mask> wantClientID: "", <mask> wantErrMsg: "", <mask> strictSNI: false, <mask> useHTTP3: false, <mask> }, { <mask> name: "tls_no_clientid", <mask> proto: proxy.ProtoTLS, <mask> hostSrvName: "example.com", <mask> cliSrvName: "example.com", </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> cliSrvName: "example.com", <mask> wantClientID: "", <mask> wantErrMsg: "", <mask> strictSNI: true, <mask> useHTTP3: false, <mask> }, { <mask> name: "tls_no_client_server_name", <mask> proto: proxy.ProtoTLS, <mask> hostSrvName: "example.com", <mask> cliSrvName: "", </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> wantClientID: "", <mask> wantErrMsg: `clientid check: client server name "" ` + <mask> `doesn't match host server name "example.com"`, <mask> strictSNI: true, <mask> useHTTP3: false, <mask> }, { <mask> name: "tls_no_client_server_name_no_strict", <mask> proto: proxy.ProtoTLS, <mask> hostSrvName: "example.com", <mask> cliSrvName: "", </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> cliSrvName: "", <mask> wantClientID: "", <mask> wantErrMsg: "", <mask> strictSNI: false, <mask> useHTTP3: false, <mask> }, { <mask> name: "tls_clientid", <mask> proto: proxy.ProtoTLS, <mask> hostSrvName: "example.com", <mask> cliSrvName: "cli.example.com", </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> cliSrvName: "cli.example.com", <mask> wantClientID: "cli", <mask> wantErrMsg: "", <mask> strictSNI: true, <mask> useHTTP3: false, <mask> }, { <mask> name: "tls_clientid_hostname_error", <mask> proto: proxy.ProtoTLS, <mask> hostSrvName: "example.com", <mask> cliSrvName: "cli.example.net", </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, }, { name: "https_clientid_quic", proto: proxy.ProtoHTTPS, hostSrvName: "example.com", cliSrvName: "cli.example.com", wantClientID: "cli", wantErrMsg: "", strictSNI: true, useHTTP3: true, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> wantClientID: "", <mask> wantErrMsg: `clientid check: client server name "cli.example.net" ` + <mask> `doesn't match host server name "example.com"`, <mask> strictSNI: true, <mask> useHTTP3: false, <mask> }, { <mask> name: "tls_invalid_clientid", <mask> proto: proxy.ProtoTLS, <mask> hostSrvName: "example.com", <mask> cliSrvName: "!!!.example.com", </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> wantClientID: "", <mask> wantErrMsg: `clientid check: invalid clientid "!!!": ` + <mask> `bad domain name label rune '!'`, <mask> strictSNI: true, <mask> useHTTP3: false, <mask> }, { <mask> name: "tls_clientid_too_long", <mask> proto: proxy.ProtoTLS, <mask> hostSrvName: "example.com", <mask> cliSrvName: `abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmno` + </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> wantErrMsg: `clientid check: invalid clientid "abcdefghijklmno` + <mask> `pqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789": ` + <mask> `domain name label is too long: got 72, max 63`, <mask> strictSNI: true, <mask> useHTTP3: false, <mask> }, { <mask> name: "quic_clientid", <mask> proto: proxy.ProtoQUIC, <mask> hostSrvName: "example.com", <mask> cliSrvName: "cli.example.com", </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> cliSrvName: "cli.example.com", <mask> wantClientID: "cli", <mask> wantErrMsg: "", <mask> strictSNI: true, <mask> useHTTP3: false, <mask> }, { <mask> name: "tls_clientid_issue3437", <mask> proto: proxy.ProtoTLS, <mask> hostSrvName: "example.com", <mask> cliSrvName: "cli.myexample.com", </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, }, { name: "https_clientid_quic", proto: proxy.ProtoHTTPS, hostSrvName: "example.com", cliSrvName: "cli.example.com", wantClientID: "cli", wantErrMsg: "", strictSNI: true, useHTTP3: true, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> wantClientID: "", <mask> wantErrMsg: `clientid check: client server name "cli.myexample.com" ` + <mask> `doesn't match host server name "example.com"`, <mask> strictSNI: true, <mask> useHTTP3: false, <mask> }, { <mask> name: "tls_case", <mask> proto: proxy.ProtoTLS, <mask> hostSrvName: "example.com", <mask> cliSrvName: "InSeNsItIvE.example.com", </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> cliSrvName: "InSeNsItIvE.example.com", <mask> wantClientID: "insensitive", <mask> wantErrMsg: ``, <mask> strictSNI: true, <mask> useHTTP3: false, <mask> }, { <mask> name: "quic_case", <mask> proto: proxy.ProtoQUIC, <mask> hostSrvName: "example.com", <mask> cliSrvName: "InSeNsItIvE.example.com", </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> cliSrvName: "InSeNsItIvE.example.com", <mask> wantClientID: "insensitive", <mask> wantErrMsg: ``, <mask> strictSNI: true, <mask> useHTTP3: false, <mask> }, { <mask> name: "https_no_clientid", <mask> proto: proxy.ProtoHTTPS, <mask> hostSrvName: "example.com", <mask> cliSrvName: "example.com", </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> cliSrvName: "example.com", <mask> wantClientID: "", <mask> wantErrMsg: "", <mask> strictSNI: true, <mask> useHTTP3: false, <mask> }, { <mask> name: "https_clientid", <mask> proto: proxy.ProtoHTTPS, <mask> hostSrvName: "example.com", <mask> cliSrvName: "cli.example.com", </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, }, { name: "https_clientid_quic", proto: proxy.ProtoHTTPS, hostSrvName: "example.com", cliSrvName: "cli.example.com", wantClientID: "cli", wantErrMsg: "", strictSNI: true, useHTTP3: true, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> cliSrvName: "cli.example.com", <mask> wantClientID: "cli", <mask> wantErrMsg: "", <mask> strictSNI: true, <mask> useHTTP3: false, <mask> }, { <mask> name: "https_clientid_quic", <mask> proto: proxy.ProtoHTTPS, <mask> hostSrvName: "example.com", <mask> cliSrvName: "cli.example.com", <mask> wantClientID: "cli", <mask> wantErrMsg: "", <mask> strictSNI: true, <mask> useHTTP3: true, <mask> }} <mask> <mask> for _, tc := range testCases { <mask> t.Run(tc.name, func(t *testing.T) { <mask> tlsConf := TLSConfig{ </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add </s> remove useHTTP3: false, </s> add
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
httpReq = newHTTPReq(tc.cliSrvName)
<mask> ) <mask> <mask> switch tc.proto { <mask> case proxy.ProtoHTTPS: <mask> httpReq = newHTTPReq(tc.cliSrvName, tc.useHTTP3) <mask> case proxy.ProtoQUIC: <mask> qconn = testQUICConnection{ <mask> serverName: tc.cliSrvName, <mask> } <mask> case proxy.ProtoTLS: </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove // github.com/lucas-clemente/quic-go seems to not populate the TLS // field. So, if the request comes over HTTP/3, use the Host header // value as the server name. // // See https://github.com/lucas-clemente/quic-go/issues/2879. // // TODO(a.garipov): Remove this crutch once they fix it. r := pctx.HTTPRequest if r.ProtoAtLeast(3, 0) { var host string host, err = netutil.SplitHost(r.Host) if err != nil { return "", fmt.Errorf("parsing host: %w", err) } srvName = host } else if connState := r.TLS; connState != nil { srvName = r.TLS.ServerName } </s> add srvName = pctx.HTTPRequest.TLS.ServerName </s> remove dbMu: &sync.Mutex{}, </s> add </s> remove if usePrivate { rDNS.usePrivate = 1 } </s> add rDNS.usePrivate.Store(usePrivate) </s> remove "github.com/lucas-clemente/quic-go" </s> add "github.com/quic-go/quic-go" </s> remove if atomic.LoadUint64(&svc.running) == 1 { </s> add if svc.running.Load() {
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
func newHTTPReq(cliSrvName string) (r *http.Request) {
<mask> } <mask> } <mask> <mask> // newHTTPReq is a helper to create HTTP requests for tests. <mask> func newHTTPReq(cliSrvName string, useHTTP3 bool) (r *http.Request) { <mask> u := &url.URL{ <mask> Path: "/dns-query", <mask> } <mask> <mask> if useHTTP3 { </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove if useHTTP3 { return &http.Request{ ProtoMajor: 3, ProtoMinor: 0, URL: u, Host: cliSrvName, TLS: &tls.ConnectionState{}, } } </s> add </s> remove var usePrivate uint32 if r.exchanger.ResolvesPrivatePTR() { usePrivate = 1 } if atomic.CompareAndSwapUint32(&r.usePrivate, 1-usePrivate, usePrivate) { </s> add usePrivate := r.exchanger.ResolvesPrivatePTR() if r.usePrivate.CompareAndSwap(!usePrivate, usePrivate) { </s> remove if atomic.LoadUint64(&svc.running) == 1 { </s> add if svc.running.Load() { </s> remove db := s.database() </s> add db := s.db.Load() </s> remove "github.com/lucas-clemente/quic-go" </s> add "github.com/quic-go/quic-go"
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
<mask> u := &url.URL{ <mask> Path: "/dns-query", <mask> } <mask> <mask> if useHTTP3 { <mask> return &http.Request{ <mask> ProtoMajor: 3, <mask> ProtoMinor: 0, <mask> URL: u, <mask> Host: cliSrvName, <mask> TLS: &tls.ConnectionState{}, <mask> } <mask> } <mask> <mask> return &http.Request{ <mask> ProtoMajor: 1, <mask> ProtoMinor: 1, <mask> URL: u, <mask> Host: cliSrvName, </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove func newHTTPReq(cliSrvName string, useHTTP3 bool) (r *http.Request) { </s> add func newHTTPReq(cliSrvName string) (r *http.Request) { </s> remove db := s.database() </s> add db := s.db.Load() </s> remove db := s.database() </s> add db := s.db.Load() </s> remove if usePrivate { rDNS.usePrivate = 1 } </s> add rDNS.usePrivate.Store(usePrivate) </s> remove tx, err := s.db.Begin(true) </s> add tx, err := s.db.Load().Begin(true)
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/dnsforward/clientid_test.go
"github.com/quic-go/quic-go/http3"
<mask> "github.com/AdguardTeam/AdGuardHome/internal/aghnet" <mask> "github.com/AdguardTeam/AdGuardHome/internal/version" <mask> "github.com/AdguardTeam/golibs/errors" <mask> "github.com/AdguardTeam/golibs/log" <mask> "github.com/lucas-clemente/quic-go/http3" <mask> ) <mask> <mask> // getAddrsResponse is the response for /install/get_addresses endpoint. <mask> type getAddrsResponse struct { <mask> Interfaces map[string]*aghnet.NetInterface `json:"interfaces"` </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove "github.com/lucas-clemente/quic-go" "github.com/lucas-clemente/quic-go/http3" </s> add "github.com/quic-go/quic-go" "github.com/quic-go/quic-go/http3" </s> remove "github.com/lucas-clemente/quic-go" </s> add "github.com/quic-go/quic-go" </s> remove // // TODO(e.burkov): Use atomic.Pointer for accessing db in go1.19. </s> add </s> remove // running is an atomic boolean value. Keep it the first value in the // struct to ensure atomic alignment. 0 means that the service is not // running, 1 means that it is running. // // TODO(a.garipov): Use [atomic.Bool] in Go 1.19 or get rid of it // completely. running uint64 </s> add </s> remove "github.com/lucas-clemente/quic-go" </s> add "github.com/quic-go/quic-go"
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/home/controlinstall.go
<mask> type RDNS struct { <mask> exchanger dnsforward.RDNSExchanger <mask> clients *clientsContainer <mask> <mask> // usePrivate is used to store the state of current private RDNS resolving <mask> // settings and to react to it's changes. <mask> usePrivate uint32 <mask> <mask> // ipCh used to pass client's IP to rDNS workerLoop. <mask> ipCh chan netip.Addr <mask> <mask> // ipCache caches the IP addresses to be resolved by rDNS. The resolved <mask> // address stays here while it's inside clients. After leaving clients the </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove // // TODO(e.burkov): Use atomic.Pointer for accessing db in go1.19. </s> add </s> remove // running is an atomic boolean value. Keep it the first value in the // struct to ensure atomic alignment. 0 means that the service is not // running, 1 means that it is running. // // TODO(a.garipov): Use [atomic.Bool] in Go 1.19 or get rid of it // completely. running uint64 </s> add </s> remove var usePrivate uint32 if r.exchanger.ResolvesPrivatePTR() { usePrivate = 1 } if atomic.CompareAndSwapUint32(&r.usePrivate, 1-usePrivate, usePrivate) { </s> add usePrivate := r.exchanger.ResolvesPrivatePTR() if r.usePrivate.CompareAndSwap(!usePrivate, usePrivate) { </s> remove // database returns the database if it's opened. It's safe for concurrent use. func (s *StatsCtx) database() (db *bbolt.DB) { s.dbMu.Lock() defer s.dbMu.Unlock() return s.db } // swapDatabase swaps the database with another one and returns it. It's safe // for concurrent use. func (s *StatsCtx) swapDatabase(with *bbolt.DB) (old *bbolt.DB) { s.dbMu.Lock() defer s.dbMu.Unlock() old, s.db = s.db, with return old } </s> add
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/home/rdns.go
// usePrivate stores the state of current private reverse-DNS resolving // settings. usePrivate atomic.Bool
<mask> // address will be resolved once again. If the address couldn't be <mask> // resolved, cache prevents further attempts to resolve it for some time. <mask> ipCache cache.Cache <mask> } <mask> <mask> // Default rDNS values. <mask> const ( <mask> defaultRDNSCacheSize = 10000 <mask> defaultRDNSCacheTTL = 1 * 60 * 60 </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove // usePrivate is used to store the state of current private RDNS resolving // settings and to react to it's changes. usePrivate uint32 </s> add </s> remove // // TODO(e.burkov): Use atomic.Pointer for accessing db in go1.19. </s> add </s> remove var usePrivate uint32 if r.exchanger.ResolvesPrivatePTR() { usePrivate = 1 } if atomic.CompareAndSwapUint32(&r.usePrivate, 1-usePrivate, usePrivate) { </s> add usePrivate := r.exchanger.ResolvesPrivatePTR() if r.usePrivate.CompareAndSwap(!usePrivate, usePrivate) { </s> remove dbMu: &sync.Mutex{}, </s> add </s> remove if atomic.LoadUint64(&svc.running) == 1 { </s> add if svc.running.Load() {
[ "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/home/rdns.go
rDNS.usePrivate.Store(usePrivate)
<mask> MaxCount: defaultRDNSCacheSize, <mask> }), <mask> ipCh: make(chan netip.Addr, defaultRDNSIPChSize), <mask> } <mask> if usePrivate { <mask> rDNS.usePrivate = 1 <mask> } <mask> <mask> go rDNS.workerLoop() <mask> <mask> return rDNS <mask> } </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove var usePrivate uint32 if r.exchanger.ResolvesPrivatePTR() { usePrivate = 1 } if atomic.CompareAndSwapUint32(&r.usePrivate, 1-usePrivate, usePrivate) { </s> add usePrivate := r.exchanger.ResolvesPrivatePTR() if r.usePrivate.CompareAndSwap(!usePrivate, usePrivate) { </s> remove db := s.database() </s> add db := s.db.Load() </s> remove if useHTTP3 { return &http.Request{ ProtoMajor: 3, ProtoMinor: 0, URL: u, Host: cliSrvName, TLS: &tls.ConnectionState{}, } } </s> add </s> remove if atomic.LoadUint64(&svc.running) == 1 { </s> add if svc.running.Load() {
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/home/rdns.go
usePrivate := r.exchanger.ResolvesPrivatePTR() if r.usePrivate.CompareAndSwap(!usePrivate, usePrivate) {
<mask> // TODO(e.burkov): Clearing cache each time this value changed is not a perfect <mask> // approach since only unresolved locally-served addresses should be removed. <mask> // Implement when improving the cache. <mask> func (r *RDNS) ensurePrivateCache() { <mask> var usePrivate uint32 <mask> if r.exchanger.ResolvesPrivatePTR() { <mask> usePrivate = 1 <mask> } <mask> <mask> if atomic.CompareAndSwapUint32(&r.usePrivate, 1-usePrivate, usePrivate) { <mask> r.ipCache.Clear() <mask> } <mask> } <mask> <mask> // isCached returns true if ip is already cached and not expired yet. It also </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove "github.com/lucas-clemente/quic-go" </s> add "github.com/quic-go/quic-go" </s> remove // github.com/lucas-clemente/quic-go seems to not populate the TLS // field. So, if the request comes over HTTP/3, use the Host header // value as the server name. // // See https://github.com/lucas-clemente/quic-go/issues/2879. // // TODO(a.garipov): Remove this crutch once they fix it. r := pctx.HTTPRequest if r.ProtoAtLeast(3, 0) { var host string host, err = netutil.SplitHost(r.Host) if err != nil { return "", fmt.Errorf("parsing host: %w", err) } srvName = host } else if connState := r.TLS; connState != nil { srvName = r.TLS.ServerName } </s> add srvName = pctx.HTTPRequest.TLS.ServerName </s> remove func newHTTPReq(cliSrvName string, useHTTP3 bool) (r *http.Request) { </s> add func newHTTPReq(cliSrvName string) (r *http.Request) { </s> remove if atomic.LoadUint64(&svc.running) == 1 { </s> add if svc.running.Load() {
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/home/rdns.go
"github.com/quic-go/quic-go" "github.com/quic-go/quic-go/http3"
<mask> "github.com/AdguardTeam/golibs/errors" <mask> "github.com/AdguardTeam/golibs/log" <mask> "github.com/AdguardTeam/golibs/netutil" <mask> "github.com/NYTimes/gziphandler" <mask> "github.com/lucas-clemente/quic-go" <mask> "github.com/lucas-clemente/quic-go/http3" <mask> "golang.org/x/net/http2" <mask> "golang.org/x/net/http2/h2c" <mask> ) <mask> <mask> const ( </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove "github.com/lucas-clemente/quic-go/http3" </s> add "github.com/quic-go/quic-go/http3" </s> remove "github.com/lucas-clemente/quic-go" </s> add "github.com/quic-go/quic-go" </s> remove "github.com/lucas-clemente/quic-go" </s> add "github.com/quic-go/quic-go" </s> remove golang.org/x/sys v0.4.0 gopkg.in/natefinch/lumberjack.v2 v2.0.0 </s> add golang.org/x/sys v0.5.0 gopkg.in/natefinch/lumberjack.v2 v2.2.1 </s> remove golang.org/x/vuln v0.0.0-20230130175424-dd534eeddf33 honnef.co/go/tools v0.3.3 </s> add golang.org/x/vuln v0.0.0-20230201222900-4c848edceff1 honnef.co/go/tools v0.4.0
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/home/web.go
<mask> <mask> // Service is the AdGuard Home DNS service. A nil *Service is a valid <mask> // [agh.Service] that does nothing. <mask> type Service struct { <mask> // running is an atomic boolean value. Keep it the first value in the <mask> // struct to ensure atomic alignment. 0 means that the service is not <mask> // running, 1 means that it is running. <mask> // <mask> // TODO(a.garipov): Use [atomic.Bool] in Go 1.19 or get rid of it <mask> // completely. <mask> running uint64 <mask> <mask> proxy *proxy.Proxy <mask> bootstraps []string <mask> upstreams []string <mask> upsTimeout time.Duration <mask> } </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove // // TODO(e.burkov): Use atomic.Pointer for accessing db in go1.19. </s> add </s> remove // dbMu protects db. dbMu *sync.Mutex </s> add </s> remove db *bbolt.DB </s> add db atomic.Pointer[bbolt.DB] </s> remove "github.com/lucas-clemente/quic-go/http3" </s> add "github.com/quic-go/quic-go/http3"
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/next/dnssvc/dnssvc.go
running atomic.Bool
<mask> proxy *proxy.Proxy <mask> bootstraps []string <mask> upstreams []string <mask> upsTimeout time.Duration <mask> } <mask> <mask> // New returns a new properly initialized *Service. If c is nil, svc is a nil <mask> // *Service that does nothing. The fields of c must not be modified after </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove // running is an atomic boolean value. Keep it the first value in the // struct to ensure atomic alignment. 0 means that the service is not // running, 1 means that it is running. // // TODO(a.garipov): Use [atomic.Bool] in Go 1.19 or get rid of it // completely. running uint64 </s> add </s> remove var usePrivate uint32 if r.exchanger.ResolvesPrivatePTR() { usePrivate = 1 } if atomic.CompareAndSwapUint32(&r.usePrivate, 1-usePrivate, usePrivate) { </s> add usePrivate := r.exchanger.ResolvesPrivatePTR() if r.usePrivate.CompareAndSwap(!usePrivate, usePrivate) { </s> remove "github.com/lucas-clemente/quic-go" </s> add "github.com/quic-go/quic-go" </s> remove github.com/lucas-clemente/quic-go v0.31.1 </s> add </s> remove // // TODO(e.burkov): Use atomic.Pointer for accessing db in go1.19. </s> add
[ "keep", "keep", "keep", "add", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/next/dnssvc/dnssvc.go
svc.running.Store(err == nil)
<mask> defer func() { <mask> // TODO(a.garipov): [proxy.Proxy.Start] doesn't actually have any way to <mask> // tell when all servers are actually up, so at best this is merely an <mask> // assumption. <mask> if err != nil { <mask> atomic.StoreUint64(&svc.running, 0) <mask> } else { <mask> atomic.StoreUint64(&svc.running, 1) <mask> } <mask> }() <mask> <mask> return svc.proxy.Start() <mask> } <mask> </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove // github.com/lucas-clemente/quic-go seems to not populate the TLS // field. So, if the request comes over HTTP/3, use the Host header // value as the server name. // // See https://github.com/lucas-clemente/quic-go/issues/2879. // // TODO(a.garipov): Remove this crutch once they fix it. r := pctx.HTTPRequest if r.ProtoAtLeast(3, 0) { var host string host, err = netutil.SplitHost(r.Host) if err != nil { return "", fmt.Errorf("parsing host: %w", err) } srvName = host } else if connState := r.TLS; connState != nil { srvName = r.TLS.ServerName } </s> add srvName = pctx.HTTPRequest.TLS.ServerName </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove db := s.database() </s> add db := s.db.Load() </s> remove tx, err := s.db.Begin(true) </s> add tx, err := s.db.Load().Begin(true)
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/next/dnssvc/dnssvc.go
if svc.running.Load() {
<mask> func (svc *Service) Config() (c *Config) { <mask> // TODO(a.garipov): Do we need to get the TCP addresses separately? <mask> <mask> var addrs []netip.AddrPort <mask> if atomic.LoadUint64(&svc.running) == 1 { <mask> udpAddrs := svc.proxy.Addrs(proxy.ProtoUDP) <mask> addrs = make([]netip.AddrPort, len(udpAddrs)) <mask> for i, a := range udpAddrs { <mask> addrs[i] = a.(*net.UDPAddr).AddrPort() <mask> } </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove var usePrivate uint32 if r.exchanger.ResolvesPrivatePTR() { usePrivate = 1 } if atomic.CompareAndSwapUint32(&r.usePrivate, 1-usePrivate, usePrivate) { </s> add usePrivate := r.exchanger.ResolvesPrivatePTR() if r.usePrivate.CompareAndSwap(!usePrivate, usePrivate) { </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove // github.com/lucas-clemente/quic-go seems to not populate the TLS // field. So, if the request comes over HTTP/3, use the Host header // value as the server name. // // See https://github.com/lucas-clemente/quic-go/issues/2879. // // TODO(a.garipov): Remove this crutch once they fix it. r := pctx.HTTPRequest if r.ProtoAtLeast(3, 0) { var host string host, err = netutil.SplitHost(r.Host) if err != nil { return "", fmt.Errorf("parsing host: %w", err) } srvName = host } else if connState := r.TLS; connState != nil { srvName = r.TLS.ServerName } </s> add srvName = pctx.HTTPRequest.TLS.ServerName </s> remove func newHTTPReq(cliSrvName string, useHTTP3 bool) (r *http.Request) { </s> add func newHTTPReq(cliSrvName string) (r *http.Request) { </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil)
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/next/dnssvc/dnssvc.go
var started atomic.Bool
<mask> UpstreamServers: []string{"1.1.1.1"}, <mask> UpstreamTimeout: websvc.JSONDuration(2 * time.Second), <mask> } <mask> <mask> // TODO(a.garipov): Use [atomic.Bool] in Go 1.19. <mask> var numStarted uint64 <mask> confMgr := newConfigManager() <mask> confMgr.onDNS = func() (s agh.ServiceWithConfig[*dnssvc.Config]) { <mask> return &aghtest.ServiceWithConfig[*dnssvc.Config]{ <mask> OnStart: func() (err error) { <mask> atomic.AddUint64(&numStarted, 1) </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove atomic.AddUint64(&numStarted, 1) </s> add started.Store(true) </s> remove atomic.AddUint32(&numAcceptCalls, 1) </s> add accepted.Store(true) </s> remove // TODO(a.garipov): use atomic.Bool in Go 1.19. var numAcceptCalls uint32 </s> add var accepted atomic.Bool </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil)
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/next/websvc/dns_test.go
started.Store(true)
<mask> confMgr := newConfigManager() <mask> confMgr.onDNS = func() (s agh.ServiceWithConfig[*dnssvc.Config]) { <mask> return &aghtest.ServiceWithConfig[*dnssvc.Config]{ <mask> OnStart: func() (err error) { <mask> atomic.AddUint64(&numStarted, 1) <mask> <mask> return nil <mask> }, <mask> OnShutdown: func(_ context.Context) (err error) { panic("not implemented") }, <mask> OnConfig: func() (c *dnssvc.Config) { panic("not implemented") }, </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove atomic.AddUint32(&numAcceptCalls, 1) </s> add accepted.Store(true) </s> remove // TODO(a.garipov): Use [atomic.Bool] in Go 1.19. var numStarted uint64 </s> add var started atomic.Bool </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove // TODO(a.garipov): use atomic.Bool in Go 1.19. var numAcceptCalls uint32 </s> add var accepted atomic.Bool
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/next/websvc/dns_test.go
assert.True(t, started.Load())
<mask> resp := &websvc.HTTPAPIDNSSettings{} <mask> err := json.Unmarshal(respBody, resp) <mask> require.NoError(t, err) <mask> <mask> assert.Equal(t, uint64(1), numStarted) <mask> assert.Equal(t, wantDNS, resp) <mask> assert.Equal(t, wantDNS, resp) <mask> } </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove assert.Equal(t, uint32(1), atomic.LoadUint32(&numAcceptCalls)) </s> add assert.True(t, accepted.Load()) </s> remove tx, err := s.db.Begin(true) </s> add tx, err := s.db.Load().Begin(true) </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove // github.com/lucas-clemente/quic-go seems to not populate the TLS // field. So, if the request comes over HTTP/3, use the Host header // value as the server name. // // See https://github.com/lucas-clemente/quic-go/issues/2879. // // TODO(a.garipov): Remove this crutch once they fix it. r := pctx.HTTPRequest if r.ProtoAtLeast(3, 0) { var host string host, err = netutil.SplitHost(r.Host) if err != nil { return "", fmt.Errorf("parsing host: %w", err) } srvName = host } else if connState := r.TLS; connState != nil { srvName = r.TLS.ServerName } </s> add srvName = pctx.HTTPRequest.TLS.ServerName </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil)
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/next/websvc/dns_test.go
var accepted atomic.Bool
<mask> "github.com/stretchr/testify/assert" <mask> ) <mask> <mask> func TestWaitListener_Accept(t *testing.T) { <mask> // TODO(a.garipov): use atomic.Bool in Go 1.19. <mask> var numAcceptCalls uint32 <mask> var l net.Listener = &aghtest.Listener{ <mask> OnAccept: func() (conn net.Conn, err error) { <mask> atomic.AddUint32(&numAcceptCalls, 1) <mask> <mask> return nil, nil </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove atomic.AddUint32(&numAcceptCalls, 1) </s> add accepted.Store(true) </s> remove // TODO(a.garipov): Use [atomic.Bool] in Go 1.19. var numStarted uint64 </s> add var started atomic.Bool </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove atomic.AddUint64(&numStarted, 1) </s> add started.Store(true) </s> remove tx, err := s.db.Begin(true) </s> add tx, err := s.db.Load().Begin(true)
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/next/websvc/waitlistener_internal_test.go
accepted.Store(true)
<mask> // TODO(a.garipov): use atomic.Bool in Go 1.19. <mask> var numAcceptCalls uint32 <mask> var l net.Listener = &aghtest.Listener{ <mask> OnAccept: func() (conn net.Conn, err error) { <mask> atomic.AddUint32(&numAcceptCalls, 1) <mask> <mask> return nil, nil <mask> }, <mask> OnAddr: func() (addr net.Addr) { panic("not implemented") }, <mask> OnClose: func() (err error) { panic("not implemented") }, </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove // TODO(a.garipov): use atomic.Bool in Go 1.19. var numAcceptCalls uint32 </s> add var accepted atomic.Bool </s> remove atomic.AddUint64(&numStarted, 1) </s> add started.Store(true) </s> remove // TODO(a.garipov): Use [atomic.Bool] in Go 1.19. var numStarted uint64 </s> add var started atomic.Bool </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil)
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/next/websvc/waitlistener_internal_test.go
assert.True(t, accepted.Load())
<mask> <mask> wg.Wait() <mask> close(done) <mask> <mask> assert.Equal(t, uint32(1), atomic.LoadUint32(&numAcceptCalls)) <mask> } </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove assert.Equal(t, uint64(1), numStarted) </s> add assert.True(t, started.Load()) </s> remove if usePrivate { rDNS.usePrivate = 1 } </s> add rDNS.usePrivate.Store(usePrivate) </s> remove if useHTTP3 { return &http.Request{ ProtoMajor: 3, ProtoMinor: 0, URL: u, Host: cliSrvName, TLS: &tls.ConnectionState{}, } } </s> add </s> remove func newHTTPReq(cliSrvName string, useHTTP3 bool) (r *http.Request) { </s> add func newHTTPReq(cliSrvName string) (r *http.Request) { </s> remove if err != nil { atomic.StoreUint64(&svc.running, 0) } else { atomic.StoreUint64(&svc.running, 1) } </s> add svc.running.Store(err == nil)
[ "keep", "keep", "keep", "keep", "replace", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/next/websvc/waitlistener_internal_test.go
<mask> } <mask> <mask> // StatsCtx collects the statistics and flushes it to the database. Its default <mask> // flushing interval is one hour. <mask> // <mask> // TODO(e.burkov): Use atomic.Pointer for accessing db in go1.19. <mask> type StatsCtx struct { <mask> // limitHours is the maximum number of hours to collect statistics into the <mask> // current unit. <mask> // <mask> // It is of type uint32 to be accessed by atomic. It's arranged at the </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove // dbMu protects db. dbMu *sync.Mutex </s> add </s> remove // usePrivate is used to store the state of current private RDNS resolving // settings and to react to it's changes. usePrivate uint32 </s> add </s> remove // running is an atomic boolean value. Keep it the first value in the // struct to ensure atomic alignment. 0 means that the service is not // running, 1 means that it is running. // // TODO(a.garipov): Use [atomic.Bool] in Go 1.19 or get rid of it // completely. running uint64 </s> add </s> remove db *bbolt.DB </s> add db atomic.Pointer[bbolt.DB] </s> remove // database returns the database if it's opened. It's safe for concurrent use. func (s *StatsCtx) database() (db *bbolt.DB) { s.dbMu.Lock() defer s.dbMu.Unlock() return s.db } // swapDatabase swaps the database with another one and returns it. It's safe // for concurrent use. func (s *StatsCtx) swapDatabase(with *bbolt.DB) (old *bbolt.DB) { s.dbMu.Lock() defer s.dbMu.Unlock() old, s.db = s.db, with return old } </s> add
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/stats/stats.go
<mask> currMu *sync.RWMutex <mask> // curr is the actual statistics collection result. <mask> curr *unit <mask> <mask> // dbMu protects db. <mask> dbMu *sync.Mutex <mask> // db is the opened statistics database, if any. <mask> db *bbolt.DB <mask> <mask> // unitIDGen is the function that generates an identifier for the current <mask> // unit. It's here for only testing purposes. </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove db *bbolt.DB </s> add db atomic.Pointer[bbolt.DB] </s> remove // // TODO(e.burkov): Use atomic.Pointer for accessing db in go1.19. </s> add </s> remove // running is an atomic boolean value. Keep it the first value in the // struct to ensure atomic alignment. 0 means that the service is not // running, 1 means that it is running. // // TODO(a.garipov): Use [atomic.Bool] in Go 1.19 or get rid of it // completely. running uint64 </s> add </s> remove // usePrivate is used to store the state of current private RDNS resolving // settings and to react to it's changes. usePrivate uint32 </s> add </s> remove "github.com/lucas-clemente/quic-go/http3" </s> add "github.com/quic-go/quic-go/http3"
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/stats/stats.go
db atomic.Pointer[bbolt.DB]
<mask> <mask> // dbMu protects db. <mask> dbMu *sync.Mutex <mask> // db is the opened statistics database, if any. <mask> db *bbolt.DB <mask> <mask> // unitIDGen is the function that generates an identifier for the current <mask> // unit. It's here for only testing purposes. <mask> unitIDGen UnitIDGenFunc <mask> </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove // dbMu protects db. dbMu *sync.Mutex </s> add </s> remove // // TODO(e.burkov): Use atomic.Pointer for accessing db in go1.19. </s> add </s> remove // running is an atomic boolean value. Keep it the first value in the // struct to ensure atomic alignment. 0 means that the service is not // running, 1 means that it is running. // // TODO(a.garipov): Use [atomic.Bool] in Go 1.19 or get rid of it // completely. running uint64 </s> add </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove // usePrivate is used to store the state of current private RDNS resolving // settings and to react to it's changes. usePrivate uint32 </s> add
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/stats/stats.go
<mask> defer withRecovered(&err) <mask> <mask> s = &StatsCtx{ <mask> currMu: &sync.RWMutex{}, <mask> dbMu: &sync.Mutex{}, <mask> filename: conf.Filename, <mask> configModified: conf.ConfigModified, <mask> httpRegister: conf.HTTPRegister, <mask> } <mask> if s.limitHours = conf.LimitDays * 24; !checkInterval(conf.LimitDays) { </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove s.dbMu.Lock() defer s.dbMu.Unlock() s.db = db </s> add s.db.Store(db) </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove if usePrivate { rDNS.usePrivate = 1 } </s> add rDNS.usePrivate.Store(usePrivate)
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/stats/stats.go
tx, err := s.db.Load().Begin(true)
<mask> <mask> var udb *unitDB <mask> id := s.unitIDGen() <mask> <mask> tx, err := s.db.Begin(true) <mask> if err != nil { <mask> return nil, fmt.Errorf("stats: opening a transaction: %w", err) <mask> } <mask> <mask> deleted := deleteOldUnits(tx, id-s.limitHours-1) </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove // github.com/lucas-clemente/quic-go seems to not populate the TLS // field. So, if the request comes over HTTP/3, use the Host header // value as the server name. // // See https://github.com/lucas-clemente/quic-go/issues/2879. // // TODO(a.garipov): Remove this crutch once they fix it. r := pctx.HTTPRequest if r.ProtoAtLeast(3, 0) { var host string host, err = netutil.SplitHost(r.Host) if err != nil { return "", fmt.Errorf("parsing host: %w", err) } srvName = host } else if connState := r.TLS; connState != nil { srvName = r.TLS.ServerName } </s> add srvName = pctx.HTTPRequest.TLS.ServerName </s> remove db := s.database() </s> add db := s.db.Load() </s> remove assert.Equal(t, uint64(1), numStarted) </s> add assert.True(t, started.Load()) </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil)
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/stats/stats.go
db := s.db.Swap(nil)
<mask> // Close implements the io.Closer interface for *StatsCtx. <mask> func (s *StatsCtx) Close() (err error) { <mask> defer func() { err = errors.Annotate(err, "stats: closing: %w") }() <mask> <mask> db := s.swapDatabase(nil) <mask> if db == nil { <mask> return nil <mask> } <mask> defer func() { <mask> cerr := db.Close() </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove db := s.database() </s> add db := s.db.Load() </s> remove s.dbMu.Lock() defer s.dbMu.Unlock() s.db = db </s> add s.db.Store(db) </s> remove db := s.database() </s> add db := s.db.Load() </s> remove atomic.AddUint64(&numStarted, 1) </s> add started.Store(true)
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/stats/stats.go
<mask> <mask> return ips <mask> } <mask> <mask> // database returns the database if it's opened. It's safe for concurrent use. <mask> func (s *StatsCtx) database() (db *bbolt.DB) { <mask> s.dbMu.Lock() <mask> defer s.dbMu.Unlock() <mask> <mask> return s.db <mask> } <mask> <mask> // swapDatabase swaps the database with another one and returns it. It's safe <mask> // for concurrent use. <mask> func (s *StatsCtx) swapDatabase(with *bbolt.DB) (old *bbolt.DB) { <mask> s.dbMu.Lock() <mask> defer s.dbMu.Unlock() <mask> <mask> old, s.db = s.db, with <mask> <mask> return old <mask> } <mask> <mask> // deleteOldUnits walks the buckets available to tx and deletes old units. It <mask> // returns the number of deletions performed. <mask> func deleteOldUnits(tx *bbolt.Tx, firstID uint32) (deleted int) { <mask> log.Debug("stats: deleting old units until id %d", firstID) <mask> </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove s.dbMu.Lock() defer s.dbMu.Unlock() s.db = db </s> add s.db.Store(db) </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove db := s.database() </s> add db := s.db.Load() </s> remove // // TODO(e.burkov): Use atomic.Pointer for accessing db in go1.19. </s> add </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil)
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/stats/stats.go
s.db.Store(db)
<mask> <mask> // Use defer to unlock the mutex as soon as possible. <mask> defer log.Debug("stats: database opened") <mask> <mask> s.dbMu.Lock() <mask> defer s.dbMu.Unlock() <mask> <mask> s.db = db <mask> <mask> return nil <mask> } <mask> <mask> func (s *StatsCtx) flush() (cont bool, sleepFor time.Duration) { </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove // database returns the database if it's opened. It's safe for concurrent use. func (s *StatsCtx) database() (db *bbolt.DB) { s.dbMu.Lock() defer s.dbMu.Unlock() return s.db } // swapDatabase swaps the database with another one and returns it. It's safe // for concurrent use. func (s *StatsCtx) swapDatabase(with *bbolt.DB) (old *bbolt.DB) { s.dbMu.Lock() defer s.dbMu.Unlock() old, s.db = s.db, with return old } </s> add </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove db := s.database() </s> add db := s.db.Load() </s> remove if err != nil { atomic.StoreUint64(&svc.running, 0) } else { atomic.StoreUint64(&svc.running, 1) } </s> add svc.running.Store(err == nil)
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/stats/stats.go
db := s.db.Load()
<mask> if limit == 0 || ptr.id == id { <mask> return true, time.Second <mask> } <mask> <mask> db := s.database() <mask> if db == nil { <mask> return true, 0 <mask> } <mask> <mask> isCommitable := true </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove db := s.database() </s> add db := s.db.Load() </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove tx, err := s.db.Begin(true) </s> add tx, err := s.db.Load().Begin(true) </s> remove if err != nil { atomic.StoreUint64(&svc.running, 0) } else { atomic.StoreUint64(&svc.running, 1) } </s> add svc.running.Store(err == nil) </s> remove if atomic.LoadUint64(&svc.running) == 1 { </s> add if svc.running.Load() {
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/stats/stats.go
db := s.db.Swap(nil)
<mask> // Reset counters and clear database <mask> func (s *StatsCtx) clear() (err error) { <mask> defer func() { err = errors.Annotate(err, "clearing: %w") }() <mask> <mask> db := s.swapDatabase(nil) <mask> if db != nil { <mask> var tx *bbolt.Tx <mask> tx, err = db.Begin(true) <mask> if err != nil { <mask> log.Error("stats: opening a transaction: %s", err) </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove tx, err := s.db.Begin(true) </s> add tx, err := s.db.Load().Begin(true) </s> remove // github.com/lucas-clemente/quic-go seems to not populate the TLS // field. So, if the request comes over HTTP/3, use the Host header // value as the server name. // // See https://github.com/lucas-clemente/quic-go/issues/2879. // // TODO(a.garipov): Remove this crutch once they fix it. r := pctx.HTTPRequest if r.ProtoAtLeast(3, 0) { var host string host, err = netutil.SplitHost(r.Host) if err != nil { return "", fmt.Errorf("parsing host: %w", err) } srvName = host } else if connState := r.TLS; connState != nil { srvName = r.TLS.ServerName } </s> add srvName = pctx.HTTPRequest.TLS.ServerName </s> remove s.dbMu.Lock() defer s.dbMu.Unlock() s.db = db </s> add s.db.Store(db) </s> remove db := s.database() </s> add db := s.db.Load()
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/stats/stats.go
db := s.db.Load()
<mask> return nil <mask> } <mask> <mask> func (s *StatsCtx) loadUnits(limit uint32) (units []*unitDB, firstID uint32) { <mask> db := s.database() <mask> if db == nil { <mask> return nil, 0 <mask> } <mask> <mask> // Use writable transaction to ensure any ongoing writable transaction is </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove db := s.database() </s> add db := s.db.Load() </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove s.dbMu.Lock() defer s.dbMu.Unlock() s.db = db </s> add s.db.Store(db) </s> remove // database returns the database if it's opened. It's safe for concurrent use. func (s *StatsCtx) database() (db *bbolt.DB) { s.dbMu.Lock() defer s.dbMu.Unlock() return s.db } // swapDatabase swaps the database with another one and returns it. It's safe // for concurrent use. func (s *StatsCtx) swapDatabase(with *bbolt.DB) (old *bbolt.DB) { s.dbMu.Lock() defer s.dbMu.Unlock() old, s.db = s.db, with return old } </s> add </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil)
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/stats/stats.go
<mask> s.Start() <mask> startTime := time.Now() <mask> testutil.CleanupAndRequireSuccess(t, s.Close) <mask> <mask> type signal = struct{} <mask> <mask> writeFunc := func(start, fin *sync.WaitGroup, waitCh <-chan unit, i int) { <mask> e := Entry{ <mask> Domain: fmt.Sprintf("example-%d.org", i), <mask> Client: fmt.Sprintf("client_%d", i), <mask> Result: Result(i)%(resultLast-1) + 1, </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove if useHTTP3 { return &http.Request{ ProtoMajor: 3, ProtoMinor: 0, URL: u, Host: cliSrvName, TLS: &tls.ConnectionState{}, } } </s> add </s> remove tx, err := s.db.Begin(true) </s> add tx, err := s.db.Load().Begin(true) </s> remove db := s.swapDatabase(nil) </s> add db := s.db.Swap(nil) </s> remove db := s.database() </s> add db := s.db.Load() </s> remove if atomic.LoadUint64(&svc.running) == 1 { </s> add if svc.running.Load() {
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/stats/stats_internal_test.go
go 1.19
<mask> module github.com/AdguardTeam/AdGuardHome/internal/tools <mask> <mask> go 1.18 <mask> <mask> require ( <mask> github.com/fzipp/gocyclo v0.6.0 <mask> github.com/golangci/misspell v0.4.0 <mask> github.com/gordonklaus/ineffassign v0.0.0-20230107090616-13ace0543b28 </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove go 1.18 </s> add go 1.19 </s> remove github.com/securego/gosec/v2 v2.14.0 </s> add github.com/securego/gosec/v2 v2.15.0 </s> remove github.com/AdguardTeam/dnsproxy v0.47.0 </s> add // TODO(a.garipov): Use v0.48.0 when it's released. github.com/AdguardTeam/dnsproxy v0.47.1-0.20230207130636-533058b17239 </s> remove golang.org/x/vuln v0.0.0-20230130175424-dd534eeddf33 honnef.co/go/tools v0.3.3 </s> add golang.org/x/vuln v0.0.0-20230201222900-4c848edceff1 honnef.co/go/tools v0.4.0
[ "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/tools/go.mod
github.com/securego/gosec/v2 v2.15.0
<mask> github.com/golangci/misspell v0.4.0 <mask> github.com/gordonklaus/ineffassign v0.0.0-20230107090616-13ace0543b28 <mask> github.com/kisielk/errcheck v1.6.3 <mask> github.com/kyoh86/looppointer v0.2.1 <mask> github.com/securego/gosec/v2 v2.14.0 <mask> golang.org/x/tools v0.5.1-0.20230117180257-8aba49bb5ea2 <mask> golang.org/x/vuln v0.0.0-20230130175424-dd534eeddf33 <mask> honnef.co/go/tools v0.3.3 <mask> mvdan.cc/gofumpt v0.4.0 <mask> mvdan.cc/unparam v0.0.0-20230125043941-70a0ce6e7b95 </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove golang.org/x/vuln v0.0.0-20230130175424-dd534eeddf33 honnef.co/go/tools v0.3.3 </s> add golang.org/x/vuln v0.0.0-20230201222900-4c848edceff1 honnef.co/go/tools v0.4.0 </s> remove honnef.co/go/tools v0.3.3 h1:oDx7VAwstgpYpb3wv0oxiZlxY+foCpRAwY7Vk6XpAgA= honnef.co/go/tools v0.3.3/go.mod h1:jzwdWgg7Jdq75wlfblQxO4neNaFFSvgc1tD5Wv8U0Yw= </s> add honnef.co/go/tools v0.4.0 h1:lyXVV1c8wUBJRKqI8JgIpT8TW1VDagfYYaxbKa/HoL8= honnef.co/go/tools v0.4.0/go.mod h1:36ZgoUOrqOk1GxwHhyryEkq8FQWkUO2xGuSMhUCcdvA= </s> remove go 1.18 </s> add go 1.19 </s> remove golang.org/x/vuln v0.0.0-20230130175424-dd534eeddf33 h1:je2aB5nnlseeGvJy5clg6EyC3jjbbCNsRDroC3qQJsA= golang.org/x/vuln v0.0.0-20230130175424-dd534eeddf33/go.mod h1:cBP4HMKv0X+x96j8IJWCKk0eqpakBmmHjKGSSC0NaYE= </s> add golang.org/x/vuln v0.0.0-20230201222900-4c848edceff1 h1:HRexnHfiDA2hkPNMDgf3vxabRMeC+XeS8tCKP9olVbs= golang.org/x/vuln v0.0.0-20230201222900-4c848edceff1/go.mod h1:cBP4HMKv0X+x96j8IJWCKk0eqpakBmmHjKGSSC0NaYE=
[ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/tools/go.mod
golang.org/x/vuln v0.0.0-20230201222900-4c848edceff1 honnef.co/go/tools v0.4.0
<mask> github.com/kisielk/errcheck v1.6.3 <mask> github.com/kyoh86/looppointer v0.2.1 <mask> github.com/securego/gosec/v2 v2.14.0 <mask> golang.org/x/tools v0.5.1-0.20230117180257-8aba49bb5ea2 <mask> golang.org/x/vuln v0.0.0-20230130175424-dd534eeddf33 <mask> honnef.co/go/tools v0.3.3 <mask> mvdan.cc/gofumpt v0.4.0 <mask> mvdan.cc/unparam v0.0.0-20230125043941-70a0ce6e7b95 <mask> ) <mask> <mask> require ( </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove github.com/securego/gosec/v2 v2.14.0 </s> add github.com/securego/gosec/v2 v2.15.0 </s> remove honnef.co/go/tools v0.3.3 h1:oDx7VAwstgpYpb3wv0oxiZlxY+foCpRAwY7Vk6XpAgA= honnef.co/go/tools v0.3.3/go.mod h1:jzwdWgg7Jdq75wlfblQxO4neNaFFSvgc1tD5Wv8U0Yw= </s> add honnef.co/go/tools v0.4.0 h1:lyXVV1c8wUBJRKqI8JgIpT8TW1VDagfYYaxbKa/HoL8= honnef.co/go/tools v0.4.0/go.mod h1:36ZgoUOrqOk1GxwHhyryEkq8FQWkUO2xGuSMhUCcdvA= </s> remove golang.org/x/vuln v0.0.0-20230130175424-dd534eeddf33 h1:je2aB5nnlseeGvJy5clg6EyC3jjbbCNsRDroC3qQJsA= golang.org/x/vuln v0.0.0-20230130175424-dd534eeddf33/go.mod h1:cBP4HMKv0X+x96j8IJWCKk0eqpakBmmHjKGSSC0NaYE= </s> add golang.org/x/vuln v0.0.0-20230201222900-4c848edceff1 h1:HRexnHfiDA2hkPNMDgf3vxabRMeC+XeS8tCKP9olVbs= golang.org/x/vuln v0.0.0-20230201222900-4c848edceff1/go.mod h1:cBP4HMKv0X+x96j8IJWCKk0eqpakBmmHjKGSSC0NaYE= </s> remove golang.org/x/sys v0.4.0 gopkg.in/natefinch/lumberjack.v2 v2.0.0 </s> add golang.org/x/sys v0.5.0 gopkg.in/natefinch/lumberjack.v2 v2.2.1 </s> remove go 1.18 </s> add go 1.19
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/tools/go.mod
golang.org/x/exp v0.0.0-20230206171751-46f607a40771 // indirect golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771 // indirect
<mask> github.com/gookit/color v1.5.2 // indirect <mask> github.com/kyoh86/nolint v0.0.1 // indirect <mask> github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354 // indirect <mask> github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect <mask> golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 // indirect <mask> golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201 // indirect <mask> golang.org/x/mod v0.7.0 // indirect <mask> golang.org/x/sync v0.1.0 // indirect <mask> golang.org/x/sys v0.4.0 // indirect <mask> gopkg.in/yaml.v2 v2.4.0 // indirect <mask> ) </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove golang.org/x/sys v0.4.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect </s> add golang.org/x/sys v0.5.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect </s> remove github.com/marten-seemann/qpack v0.3.0 // indirect github.com/marten-seemann/qtls-go1-18 v0.1.4 // indirect github.com/marten-seemann/qtls-go1-19 v0.1.2 // indirect </s> add </s> remove github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f // indirect </s> add github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect </s> remove github.com/BurntSushi/toml v1.1.0 // indirect </s> add
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/tools/go.mod
golang.org/x/sys v0.5.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect
<mask> golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 // indirect <mask> golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201 // indirect <mask> golang.org/x/mod v0.7.0 // indirect <mask> golang.org/x/sync v0.1.0 // indirect <mask> golang.org/x/sys v0.4.0 // indirect <mask> gopkg.in/yaml.v2 v2.4.0 // indirect <mask> ) </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 // indirect golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201 // indirect </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 // indirect golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771 // indirect </s> remove github.com/marten-seemann/qpack v0.3.0 // indirect github.com/marten-seemann/qtls-go1-18 v0.1.4 // indirect github.com/marten-seemann/qtls-go1-19 v0.1.2 // indirect </s> add </s> remove github.com/BurntSushi/toml v1.1.0 // indirect </s> add </s> remove github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f // indirect </s> add github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/tools/go.mod
github.com/go-logr/logr v1.2.3 h1:2DntVwHkVopvECVRSlL5PSo9eG+cAkDCuckLubN+rq0=
<mask> github.com/frankban/quicktest v1.14.3 h1:FJKSZTDHjyhriyC81FLQ0LY93eSai0ZyR/ZIkd3ZUKE= <mask> github.com/fzipp/gocyclo v0.6.0 h1:lsblElZG7d3ALtGMx9fmxeTKZaLLpU8mET09yN4BBLo= <mask> github.com/fzipp/gocyclo v0.6.0/go.mod h1:rXPyn8fnlpa0R2csP/31uerbiVBugk5whMdlyaLkLoA= <mask> github.com/golangci/misspell v0.4.0 h1:KtVB/hTK4bbL/S6bs64rYyk8adjmh1BygbBiaAiX+a0= <mask> github.com/golangci/misspell v0.4.0/go.mod h1:W6O/bwV6lGDxUCChm2ykw9NQdd5bYd1Xkjo88UcWyJc= <mask> github.com/google/go-cmdtest v0.4.1-0.20220921163831-55ab3332a786 h1:rcv+Ippz6RAtvaGgKxc+8FQIpxHgsF+HBzPyYL2cyVU= <mask> github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove go 1.18 </s> add go 1.19 </s> remove github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f h1:gl1DCiSk+mrXXBGPm6CEeS2MkJuMVzAOrXg34oVj1QI= github.com/google/pprof v0.0.0-20230131232505-5a9e8f65f08f/go.mod h1:dDKJzRmX4S37WGHujM7tX//fmj1uioxKzKxz3lo4HJo= </s> add github.com/google/pprof v0.0.0-20230207041349-798e818bf904 h1:4/hN5RUoecvl+RmJRE2YxKWtnnQls6rQjjW5oV7qg2U= github.com/google/pprof v0.0.0-20230207041349-798e818bf904/go.mod h1:uglQLonpP8qtYCYyzA+8c/9qtqgA3qsXGYqCPKARAFg= </s> remove github.com/securego/gosec/v2 v2.14.0 </s> add github.com/securego/gosec/v2 v2.15.0 </s> remove honnef.co/go/tools v0.3.3 h1:oDx7VAwstgpYpb3wv0oxiZlxY+foCpRAwY7Vk6XpAgA= honnef.co/go/tools v0.3.3/go.mod h1:jzwdWgg7Jdq75wlfblQxO4neNaFFSvgc1tD5Wv8U0Yw= </s> add honnef.co/go/tools v0.4.0 h1:lyXVV1c8wUBJRKqI8JgIpT8TW1VDagfYYaxbKa/HoL8= honnef.co/go/tools v0.4.0/go.mod h1:36ZgoUOrqOk1GxwHhyryEkq8FQWkUO2xGuSMhUCcdvA=
[ "keep", "keep", "add", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/tools/go.sum
github.com/onsi/ginkgo/v2 v2.8.0 h1:pAM+oBNPrpXRs+E/8spkeGx9QgekbRVyr74EUvRVOUI= github.com/onsi/gomega v1.26.0 h1:03cDLK28U6hWvCAns6NeydX3zIm4SF3ci69ulidS32Q=
<mask> github.com/kyoh86/nolint v0.0.1 h1:GjNxDEkVn2wAxKHtP7iNTrRxytRZ1wXxLV5j4XzGfRU= <mask> github.com/kyoh86/nolint v0.0.1/go.mod h1:1ZiZZ7qqrZ9dZegU96phwVcdQOMKIqRzFJL3ewq9gtI= <mask> github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354 h1:4kuARK6Y6FxaNu/BnU2OAaLF86eTVhP2hjTB6iMvItA= <mask> github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354/go.mod h1:KSVJerMDfblTH7p5MZaTt+8zaT2iEk3AkVb9PQdZuE8= <mask> github.com/onsi/ginkgo/v2 v2.3.1 h1:8SbseP7qM32WcvE6VaN6vfXxv698izmsJ1UQX9ve7T8= <mask> github.com/onsi/gomega v1.22.1 h1:pY8O4lBfsHKZHM/6nrxkhVPUznOlIu3quZcKP/M20KI= <mask> github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e h1:aoZm08cpOy4WuID//EZDgcC4zIxODThtZNPirFr42+A= <mask> github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= <mask> github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= <mask> github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= <mask> github.com/securego/gosec/v2 v2.14.0 h1:U1hfs0oBackChXA72plCYVA4cOlQ4gO+209dHiSNZbI= </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove github.com/securego/gosec/v2 v2.14.0 h1:U1hfs0oBackChXA72plCYVA4cOlQ4gO+209dHiSNZbI= github.com/securego/gosec/v2 v2.14.0/go.mod h1:Ff03zEi5NwSOfXj9nFpBfhbWTtROCkg9N+9goggrYn4= </s> add github.com/securego/gosec/v2 v2.15.0 h1:v4Ym7FF58/jlykYmmhZ7mTm7FQvN/setNm++0fgIAtw= github.com/securego/gosec/v2 v2.15.0/go.mod h1:VOjTrZOkUtSDt2QLSJmQBMWnvwiQPEjg0l+5juIqGk8= </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 // indirect golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201 // indirect </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 // indirect golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771 // indirect </s> remove github.com/securego/gosec/v2 v2.14.0 </s> add github.com/securego/gosec/v2 v2.15.0
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/tools/go.sum
github.com/securego/gosec/v2 v2.15.0 h1:v4Ym7FF58/jlykYmmhZ7mTm7FQvN/setNm++0fgIAtw= github.com/securego/gosec/v2 v2.15.0/go.mod h1:VOjTrZOkUtSDt2QLSJmQBMWnvwiQPEjg0l+5juIqGk8=
<mask> github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e h1:aoZm08cpOy4WuID//EZDgcC4zIxODThtZNPirFr42+A= <mask> github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= <mask> github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= <mask> github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= <mask> github.com/securego/gosec/v2 v2.14.0 h1:U1hfs0oBackChXA72plCYVA4cOlQ4gO+209dHiSNZbI= <mask> github.com/securego/gosec/v2 v2.14.0/go.mod h1:Ff03zEi5NwSOfXj9nFpBfhbWTtROCkg9N+9goggrYn4= <mask> github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= <mask> github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= <mask> github.com/stretchr/testify v1.1.4/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= <mask> github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= <mask> github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk= </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove github.com/onsi/ginkgo/v2 v2.3.1 h1:8SbseP7qM32WcvE6VaN6vfXxv698izmsJ1UQX9ve7T8= github.com/onsi/gomega v1.22.1 h1:pY8O4lBfsHKZHM/6nrxkhVPUznOlIu3quZcKP/M20KI= </s> add github.com/onsi/ginkgo/v2 v2.8.0 h1:pAM+oBNPrpXRs+E/8spkeGx9QgekbRVyr74EUvRVOUI= github.com/onsi/gomega v1.26.0 h1:03cDLK28U6hWvCAns6NeydX3zIm4SF3ci69ulidS32Q= </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 </s> remove github.com/securego/gosec/v2 v2.14.0 </s> add github.com/securego/gosec/v2 v2.15.0
[ "keep", "keep", "keep", "keep", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/tools/go.sum
golang.org/x/exp v0.0.0-20230206171751-46f607a40771 h1:xP7rWLUr1e1n2xkK5YB4LI0hPEy3LJC6Wk+D4pGlOJg= golang.org/x/exp v0.0.0-20230206171751-46f607a40771/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771 h1:k+aVvDl4NAHQwLMtHN6wB0DL0737J8ScFNIufmap3/s= golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk=
<mask> golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= <mask> golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= <mask> golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= <mask> golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= <mask> golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 h1:BEABXpNXLEz0WxtA+6CQIz2xkg80e+1zrhWyMcq8VzE= <mask> golang.org/x/exp v0.0.0-20230131160201-f062dba9d201/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= <mask> golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201 h1:O1QcdQUR9htWjzzsXVFPX+RJ3n1P/u/5bsQR8dbs5BY= <mask> golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk= <mask> golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= <mask> golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= <mask> golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= <mask> golang.org/x/mod v0.7.0 h1:LapD9S96VoQRhi/GrNTqeBJFrUjs5UHCAtTlgwA5oZA= <mask> golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= </s> Pull request 1729: upd-go Merge in DNS/adguard-home from upd-go to master Squashed commit of the following: commit 0e13d6863a3d463289823a27414b427cb76be88c Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:20:14 2023 +0300 scripts: try increasing test timeout commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 20:00:17 2023 +0300 all: upd quic-go; imp atomic values commit fae2b75b6990f2bd77e5c019a35a72322bac85f7 Author: Ainar Garipov <[email protected]> Date: Tue Feb 7 17:36:33 2023 +0300 all: upd go, deps; imp atomic values </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 h1:BEABXpNXLEz0WxtA+6CQIz2xkg80e+1zrhWyMcq8VzE= golang.org/x/exp v0.0.0-20230131160201-f062dba9d201/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 h1:xP7rWLUr1e1n2xkK5YB4LI0hPEy3LJC6Wk+D4pGlOJg= golang.org/x/exp v0.0.0-20230206171751-46f607a40771/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= </s> remove golang.org/x/sys v0.4.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect </s> add golang.org/x/sys v0.5.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 // indirect golang.org/x/exp/typeparams v0.0.0-20230131160201-f062dba9d201 // indirect </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 // indirect golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771 // indirect </s> remove golang.org/x/exp v0.0.0-20230131160201-f062dba9d201 </s> add golang.org/x/exp v0.0.0-20230206171751-46f607a40771 </s> remove golang.org/x/sys v0.4.0 gopkg.in/natefinch/lumberjack.v2 v2.0.0 </s> add golang.org/x/sys v0.5.0 gopkg.in/natefinch/lumberjack.v2 v2.2.1
[ "keep", "keep", "keep", "keep", "replace", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ]
https://github.com/AdguardTeam/AdGuardHome/commit/137d280032c8f2f0331f16b00cba83682369a43f
internal/tools/go.sum