text
stringlengths
9
39.2M
dir
stringlengths
26
295
lang
stringclasses
185 values
created_date
timestamp[us]
updated_date
timestamp[us]
repo_name
stringlengths
1
97
repo_full_name
stringlengths
7
106
star
int64
1k
183k
len_tokens
int64
1
13.8M
```go package dhcpsvc import ( "context" "fmt" "log/slog" "net" "net/netip" "sync" "sync/atomic" "time" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/mapsutil" ) // DHCPServer is a DHCP server for both IPv4 and IPv6 address families. type DHCPServer struct { // enabled indicates wh...
/content/code_sandbox/internal/dhcpsvc/server.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,484
```go package dhcpsvc import ( "fmt" "log/slog" "os" "time" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/mapsutil" "github.com/AdguardTeam/golibs/netutil" ) // Config is the configuration for the DHCP service. type Config struct { // Interfaces stores configurations of DHCP server sp...
/content/code_sandbox/internal/dhcpsvc/config.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
715
```go // Package dhcpsvc contains the AdGuard Home DHCP service. // // TODO(e.burkov): Add tests. package dhcpsvc import ( "context" "net" "net/netip" "github.com/AdguardTeam/AdGuardHome/internal/next/agh" ) const ( // keyInterface is the key for logging the network interface name. keyInterface = "iface" // ...
/content/code_sandbox/internal/dhcpsvc/dhcpsvc.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,116
```go package dhcpsvc import ( "net/netip" "testing" "time" "github.com/AdguardTeam/golibs/logutil/slogutil" "github.com/AdguardTeam/golibs/testutil" "github.com/google/gopacket/layers" "github.com/stretchr/testify/assert" ) func TestIPv4Config_Options(t *testing.T) { oneIP, otherIP := netip.MustParseAddr("1...
/content/code_sandbox/internal/dhcpsvc/v4_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
770
```go package dhcpsvc_test import ( "net" "net/netip" "time" "github.com/AdguardTeam/AdGuardHome/internal/dhcpsvc" "github.com/AdguardTeam/golibs/logutil/slogutil" "github.com/stretchr/testify/require" ) // testLocalTLD is a common local TLD for tests. const testLocalTLD = "local" // testTimeout is a common t...
/content/code_sandbox/internal/dhcpsvc/dhcpsvc_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
618
```go package dhcpsvc_test import ( "path/filepath" "testing" "github.com/AdguardTeam/AdGuardHome/internal/dhcpsvc" "github.com/AdguardTeam/golibs/testutil" ) func TestConfig_Validate(t *testing.T) { leasesPath := filepath.Join(t.TempDir(), "leases.json") testCases := []struct { name string conf ...
/content/code_sandbox/internal/dhcpsvc/config_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
695
```go //go:build unix package aghrenameio import ( "io/fs" "github.com/google/renameio/v2" ) // pendingFile is a wrapper around [*renameio.PendingFile] making it an // [io.WriteCloser]. type pendingFile struct { file *renameio.PendingFile } // type check var _ PendingFile = pendingFile{} // Cleanup implements ...
/content/code_sandbox/internal/aghrenameio/renameio_unix.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
296
```go package aghrenameio_test import ( "io/fs" "os" "path/filepath" "testing" "github.com/AdguardTeam/AdGuardHome/internal/aghrenameio" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/testutil" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) // testPerm is...
/content/code_sandbox/internal/aghrenameio/renameio_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
576
```go package dhcpsvc import ( "fmt" "log/slog" "net" "time" ) // macKey contains hardware address as byte array of 6, 8, or 20 bytes. // // TODO(e.burkov): Move to aghnet or even to netutil. type macKey any // macToKey converts mac into macKey, which is used as the key for the lease // maps. mac must be a val...
/content/code_sandbox/internal/dhcpsvc/interface.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
761
```go //go:build windows package aghrenameio import ( "fmt" "io/fs" "os" "path/filepath" "github.com/AdguardTeam/golibs/errors" ) // pendingFile is a wrapper around [*os.File] calling [os.Rename] in its Close // method. type pendingFile struct { file *os.File targetPath string } // type check var _ Pe...
/content/code_sandbox/internal/aghrenameio/renameio_windows.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
462
```go // Package aghrenameio is a wrapper around package github.com/google/renameio/v2 // that provides a similar stream-based API for both Unix and Windows systems. // While the Windows API is not technically atomic, it still provides a // consistent stream-based interface, and atomic renames of files do not seem to /...
/content/code_sandbox/internal/aghrenameio/renameio.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
443
```go package whois_test import ( "context" "io" "net" "net/netip" "testing" "time" "github.com/AdguardTeam/AdGuardHome/internal/whois" "github.com/AdguardTeam/golibs/testutil/fakenet" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestDefault_Process(t *testing.T) { con...
/content/code_sandbox/internal/whois/whois_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
989
```go // Package whois provides WHOIS functionality. package whois import ( "bytes" "cmp" "context" "fmt" "io" "net" "net/netip" "strconv" "strings" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/ioutil" "github.com/Adgua...
/content/code_sandbox/internal/whois/whois.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,723
```go // Package schedule provides types for scheduling. package schedule import ( "encoding/json" "fmt" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/timeutil" "gopkg.in/yaml.v3" ) // Weekly is a schedule for one week. Each...
/content/code_sandbox/internal/schedule/schedule.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,767
```go package schedule import ( "encoding/json" "testing" "time" "github.com/AdguardTeam/golibs/testutil" "github.com/AdguardTeam/golibs/timeutil" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" ) func TestWeekly_Contains(t *testing.T) { baseTime := time.Date(20...
/content/code_sandbox/internal/schedule/schedule_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
3,495
```go package aghnet import ( "fmt" "io" "io/fs" "net/netip" "path" "sync/atomic" "github.com/AdguardTeam/AdGuardHome/internal/aghos" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/hostsfile" "github.com/AdguardTeam/golibs/log" ) // hostsContainerPrefix is a prefix for logging and wr...
/content/code_sandbox/internal/aghnet/hostscontainer.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,698
```go package aghnet import ( "strings" ) // NormalizeDomain returns a lowercased version of host without the final dot, // unless host is ".", in which case it returns it unchanged. That is a special // case that to allow matching queries like: // // dig IN NS '.' func NormalizeDomain(host string) (norm string) { ...
/content/code_sandbox/internal/aghnet/addr.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
96
```go // Package aghnet contains some utilities for networking. package aghnet import ( "bytes" "context" "encoding/json" "fmt" "io" "net" "net/netip" "net/url" "strings" "syscall" "github.com/AdguardTeam/AdGuardHome/internal/aghos" "github.com/AdguardTeam/dnsproxy/upstream" "github.com/AdguardTeam/golib...
/content/code_sandbox/internal/aghnet/net.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,778
```go //go:build freebsd package aghnet import ( "io/fs" "testing" "testing/fstest" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestIfaceHasStaticIP(t *testing.T) { const ( ifaceName = `em0` rcConf = "etc/rc.conf" ) testCases := []struct { name string ro...
/content/code_sandbox/internal/aghnet/net_freebsd_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
669
```go //go:build darwin package aghnet import ( "bufio" "bytes" "fmt" "io" "regexp" "github.com/AdguardTeam/AdGuardHome/internal/aghos" "github.com/AdguardTeam/golibs/errors" ) // hardwarePortInfo contains information about the current state of the internet // connection obtained from macOS networksetup. typ...
/content/code_sandbox/internal/aghnet/net_darwin.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,256
```go //go:build darwin || freebsd || linux || openbsd package aghnet import ( "io" "syscall" "github.com/AdguardTeam/golibs/errors" ) // closePortChecker closes c. c must be non-nil. func closePortChecker(c io.Closer) (err error) { return c.Close() } func isAddrInUse(err syscall.Errno) (ok bool) { return er...
/content/code_sandbox/internal/aghnet/net_unix.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
103
```go package aghnet import ( "bytes" "encoding/json" "fmt" "io/fs" "net" "net/netip" "strings" "testing" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/netutil" "github.com/AdguardTeam/golibs/testutil" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) /...
/content/code_sandbox/internal/aghnet/net_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,814
```go //go:build freebsd package aghnet import ( "bufio" "fmt" "io" "strings" "github.com/AdguardTeam/AdGuardHome/internal/aghos" "github.com/AdguardTeam/golibs/netutil" ) func ifaceHasStaticIP(ifaceName string) (ok bool, err error) { const rcConfFilename = "etc/rc.conf" walker := aghos.FileWalker(interfac...
/content/code_sandbox/internal/aghnet/net_freebsd.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
378
```go package aghnet import ( "fmt" "net" "time" "github.com/AdguardTeam/golibs/log" ) // IPVersion is a alias for int for documentation purposes. Use it when the // integer means IP version. type IPVersion = int // IP version constants. const ( IPVersion4 IPVersion = 4 IPVersion6 IPVersion = 6 ) // NetIfac...
/content/code_sandbox/internal/aghnet/interfaces.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
899
```go //go:build linux package aghnet import ( "bufio" "fmt" "io" "net/netip" "os" "strings" "github.com/AdguardTeam/AdGuardHome/internal/aghos" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/golibs/stringutil" "github.com/google/renameio/v2/maybe" "gol...
/content/code_sandbox/internal/aghnet/net_linux.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,504
```go package aghnet import ( "net" "testing" "github.com/AdguardTeam/golibs/netutil" "github.com/stretchr/testify/assert" ) func TestIPMut(t *testing.T) { testIPs := []net.IP{{ 127, 0, 0, 1, }, { 192, 168, 0, 1, }, { 8, 8, 8, 8, }} t.Run("nil_no_mut", func(t *testing.T) { ipmut := NewIPMut(nil) ...
/content/code_sandbox/internal/aghnet/ipmut_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
275
```go package aghnet_test import ( "net" "net/netip" "net/url" "testing" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/golibs/netutil" "github.com/AdguardTeam/golibs/testutil" "github.com/stretchr/testify/assert" ) func TestMain(m *testing.M) { testutil.DiscardLogOutput(m) } ...
/content/code_sandbox/internal/aghnet/net_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
738
```go //go:build darwin || freebsd || openbsd package aghnet import "github.com/AdguardTeam/AdGuardHome/internal/aghos" func canBindPrivilegedPorts() (can bool, err error) { return aghos.HaveAdminRights() } ```
/content/code_sandbox/internal/aghnet/net_bsd.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
61
```go //go:build linux package aghnet import ( "net" "github.com/AdguardTeam/golibs/netutil" "github.com/insomniacslk/dhcp/dhcpv4/nclient4" ) // listenPacketReusable announces on the local network address additionally // configuring the socket to have a reusable binding. func listenPacketReusable(ifaceName, netw...
/content/code_sandbox/internal/aghnet/interfaces_linux.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
165
```go //go:build windows package aghnet import "github.com/AdguardTeam/AdGuardHome/internal/aghos" func checkOtherDHCP(ifaceName string) (ok4, ok6 bool, err4, err6 error) { return false, false, aghos.Unsupported("CheckIfOtherDHCPServersPresentV4"), aghos.Unsupported("CheckIfOtherDHCPServersPresentV6") } ```
/content/code_sandbox/internal/aghnet/dhcp_windows.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
96
```go //go:build openbsd package aghnet import ( "bufio" "fmt" "io" "strings" "github.com/AdguardTeam/AdGuardHome/internal/aghos" "github.com/AdguardTeam/golibs/netutil" ) func ifaceHasStaticIP(ifaceName string) (ok bool, err error) { filename := fmt.Sprintf("etc/hostname.%s", ifaceName) return aghos.FileW...
/content/code_sandbox/internal/aghnet/net_openbsd.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
268
```go //go:build darwin || freebsd || linux || openbsd package aghnet import ( "bytes" "fmt" "net" "net/netip" "os" "time" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/golibs/netutil" "github.com/insomniacslk/dhcp/dhcpv4" "github.com/insomniacslk/dhcp/...
/content/code_sandbox/internal/aghnet/dhcp_unix.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,618
```go package aghnet import ( "net" "sync/atomic" ) // IPMutFunc is the signature of a function which modifies the IP address // instance. It should be safe for concurrent use. type IPMutFunc func(ip net.IP) // nopIPMutFunc is the IPMutFunc that does nothing. func nopIPMutFunc(net.IP) {} // IPMut is a type-safe ...
/content/code_sandbox/internal/aghnet/ipmut.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
284
```go //go:build windows package aghnet import ( "io" "syscall" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghos" "github.com/AdguardTeam/golibs/errors" "golang.org/x/sys/windows" ) func canBindPrivilegedPorts() (can bool, err error) { return true, nil } func ifaceHasStaticIP(string) (ok bool, err ...
/content/code_sandbox/internal/aghnet/net_windows.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
281
```go package aghnet import ( "net/netip" "strings" ) // GenerateHostname generates the hostname from ip. In case of using IPv4 the // result should be like: // // 192-168-10-1 // // In case of using IPv6, the result is like: // // ff80-f076-0000-0000-0000-0000-0000-0010 // // ip must be either an IPv4 or an IPv6....
/content/code_sandbox/internal/aghnet/hostgen.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
194
```go package aghnet import ( "io/fs" "testing" "testing/fstest" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/testutil" "github.com/AdguardTeam/golibs/testutil/fakefs" "github.com/stretchr/testify/assert" ) func TestIfaceHasStaticIP(t *testing.T) { testCases := []struct { name ...
/content/code_sandbox/internal/aghnet/net_darwin_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,175
```go package aghnet import ( "slices" "strings" "github.com/AdguardTeam/urlfilter" "github.com/AdguardTeam/urlfilter/filterlist" ) // IgnoreEngine contains the list of rules for ignoring hostnames and matches // them. // // TODO(s.chzhen): Move all urlfilter stuff to aghfilter. type IgnoreEngine struct { // e...
/content/code_sandbox/internal/aghnet/ignore.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
357
```go package aghnet import ( "io/fs" "path" "testing" "testing/fstest" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/testutil/fakefs" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) const nl = "\n" func TestHostsContainer_PathsToPatterns(t *testing.T) { ...
/content/code_sandbox/internal/aghnet/hostscontainer_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
623
```go //go:build openbsd package aghnet import ( "fmt" "io/fs" "testing" "testing/fstest" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestIfaceHasStaticIP(t *testing.T) { const ifaceName = "em0" confFile := fmt.Sprintf("etc/hostname.%s", ifaceName) testCases := []str...
/content/code_sandbox/internal/aghnet/net_openbsd_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
475
```go //go:build linux package aghnet import ( "io/fs" "testing" "testing/fstest" "github.com/AdguardTeam/golibs/testutil" "github.com/stretchr/testify/assert" ) func TestHasStaticIP(t *testing.T) { const ifaceName = "wlan0" const ( dhcpcd = "etc/dhcpcd.conf" netifaces = "etc/network/interfaces" ) ...
/content/code_sandbox/internal/aghnet/net_linux_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,049
```go package aghnet_test import ( "testing" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/stretchr/testify/require" ) func TestIgnoreEngine_Has(t *testing.T) { hostnames := []string{ "*.example.com", "example.com", "|.^", } engine, err := aghnet.NewIgnoreEngine(hostnames) require.No...
/content/code_sandbox/internal/aghnet/ignore_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
245
```go package aghnet // CheckOtherDHCP tries to discover another DHCP server in the network. func CheckOtherDHCP(ifaceName string) (ok4, ok6 bool, err4, err6 error) { return checkOtherDHCP(ifaceName) } ```
/content/code_sandbox/internal/aghnet/dhcp.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
57
```go package aghnet import ( "net/netip" "testing" "github.com/stretchr/testify/assert" ) func TestGenerateHostName(t *testing.T) { t.Run("valid", func(t *testing.T) { testCases := []struct { name string want string ip netip.Addr }{{ name: "good_ipv4", want: "127-0-0-1", ip: netip.Must...
/content/code_sandbox/internal/aghnet/hostgen_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
294
```go package aghnet_test import ( "net/netip" "path" "sync/atomic" "testing" "testing/fstest" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/AdGuardHome/internal/aghtest" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/hostsfile" "github.com/Adgua...
/content/code_sandbox/internal/aghnet/hostscontainer_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,678
```go //go:build darwin || freebsd || openbsd package aghnet import ( "context" "net" "os" "syscall" "github.com/AdguardTeam/golibs/errors" "golang.org/x/sys/unix" ) // reuseAddrCtrl is the function to be set to net.ListenConfig.Control. It // configures the socket to have a reusable port binding. func reuse...
/content/code_sandbox/internal/aghnet/interfaces_bsd.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
270
```go package dnsforward import ( "encoding/binary" "fmt" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/log" "github.com/miekg/dns" ) // type check var _ proxy.BeforeRequestHandler = (*Server)(...
/content/code_sandbox/internal/dnsforward/beforerequest.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
890
```go package aghnet import ( "net" "testing" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/testutil" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) // fakeIface is a stub implementation of aghnet.NetIface to simplify testing. type fakeIface struct { err ...
/content/code_sandbox/internal/aghnet/interfaces_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,998
```go package dnsforward import ( "fmt" "net" "slices" "strings" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/urlfilter/rules" "github.com/miekg/dns" ) // clientRequestFilteringSettings looks up client filtering settings using the // clie...
/content/code_sandbox/internal/dnsforward/filter.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,642
```go package dnsforward import ( "fmt" "slices" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/AdguardTeam/dnsproxy/upstream" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/golibs/netutil" "github.com/AdguardTeam/golibs/stringutil...
/content/code_sandbox/internal/dnsforward/upstreams.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,335
```go package dnsforward import ( "net" "testing" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/urlfilter/rules" "github.com/miekg/dns" "github.com/stretchr/testify/assert" ) func TestGenAnswerHTTPS_andSVCB(t *testing.T) { // Preconditions. s := createTestServer(t, &filteri...
/content/code_sandbox/internal/dnsforward/svcbmsg_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,363
```go package dnsforward import ( "context" "fmt" "net" "net/netip" "strconv" "time" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/golibs/netutil" ) // DialContext is an [aghnet.DialContextFunc] that uses s to resolve hostnames. // addr should be a valid ...
/content/code_sandbox/internal/dnsforward/dialcontext.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
450
```go package dnsforward import ( "fmt" "net/netip" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/urlfilter/rules" "github.com/miekg/dns" ) // filterDNSRewriteR...
/content/code_sandbox/internal/dnsforward/dnsrewrite.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,311
```go package dnsforward import ( "cmp" "encoding/binary" "net" "net/netip" "strings" "time" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/golibs/netutil" "github.com/miekg/dns" ) // To transfer i...
/content/code_sandbox/internal/dnsforward/process.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
4,885
```go package dnsforward import ( "cmp" "net" "net/netip" "testing" "github.com/AdguardTeam/AdGuardHome/internal/aghtest" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/AdguardTeam/dnsproxy/upstream" "github.com/AdguardTeam/golibs/logutil/slogutil"...
/content/code_sandbox/internal/dnsforward/process_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
6,708
```go package dnsforward import ( "fmt" "net" "os" "strings" "github.com/AdguardTeam/AdGuardHome/internal/ipset" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/log" "github.com/miekg/dns" ) // ipsetCtx is the ipset context. ipsetMgr can be nil. type ipsetCtx struct { ipsetMgr ipset.M...
/content/code_sandbox/internal/dnsforward/ipset.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,010
```go package dnsforward import ( "net" "net/netip" "testing" "github.com/AdguardTeam/AdGuardHome/internal/aghtest" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/AdguardTeam/dnsproxy/upstream" "github.com/AdguardTeam/golibs/logutil/slogutil" "gith...
/content/code_sandbox/internal/dnsforward/filter_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
3,128
```go package dnsforward import ( "net/netip" "slices" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/urlfilter/rules" "github.com/miekg/dns" ) // TODO(e.burkov): Name all the methods by a [proxy.Mess...
/content/code_sandbox/internal/dnsforward/msg.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
3,511
```go package dnsforward import ( "net" "testing" "github.com/AdguardTeam/AdGuardHome/internal/aghtest" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/AdguardTeam/golibs/netutil" "github.com/AdguardTeam/golibs/testutil" "github.com/miekg/dns" "gith...
/content/code_sandbox/internal/dnsforward/dns64_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
3,070
```go package dnsforward import ( "cmp" "encoding/json" "fmt" "io" "net/http" "net/netip" "slices" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/AdguardTeam/dnsproxy/upstream" "githu...
/content/code_sandbox/internal/dnsforward/http.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
6,279
```go package dnsforward import ( "encoding/json" "fmt" "net/http" "net/netip" "slices" "strings" "github.com/AdguardTeam/AdGuardHome/internal/aghalg" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/golibs/container" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/...
/content/code_sandbox/internal/dnsforward/access.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,037
```go package dnsforward import ( "net" "net/netip" "github.com/AdguardTeam/dnsproxy/proxy" ) // setupDNS64 initializes DNS64 settings, the NAT64 prefixes in particular. If // the DNS64 feature is enabled and no prefixes are configured, the default // Well-Known Prefix is used, just like Section 5.2 of RFC 6147 ...
/content/code_sandbox/internal/dnsforward/dns64.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
435
```go package dnsforward import ( "encoding/base64" "net" "strconv" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/urlfilter/rules" "github.com/miekg/dns" ) // genAnswerHTTPS returns a properly initialized HTTPS resource record. // // See the comment on genAnswerSVCB for a list of current restrict...
/content/code_sandbox/internal/dnsforward/svcbmsg.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,557
```go package dnsforward import ( "net/netip" "testing" "github.com/AdguardTeam/urlfilter/rules" "github.com/miekg/dns" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestIsBlockedClientID(t *testing.T) { clientID := "client-1" clients := []string{clientID} a, err := newA...
/content/code_sandbox/internal/dnsforward/access_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,140
```go package dnsforward import ( "net" "testing" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/AdguardTeam/golibs/netutil" "github.com/AdguardTeam/urlfilter/rules" "github.com/miekg/dns" "github.com/stretchr/testify/assert" "github.com/stretchr/t...
/content/code_sandbox/internal/dnsforward/dnsrewrite_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,087
```go package dnsforward import ( "net" "net/url" "strings" "testing" "time" "github.com/AdguardTeam/dnsproxy/upstream" "github.com/AdguardTeam/golibs/testutil" "github.com/miekg/dns" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestUpstreamConfigValidator(t *testing.T)...
/content/code_sandbox/internal/dnsforward/upstreams_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,783
```go package dnsforward import ( "net" "testing" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/miekg/dns" "github.com/stretchr/testify/assert" ) // fakeIpsetMgr is a fake aghnet.IpsetManager for tests. type fakeIpsetMgr struct { ip4s []net.IP ip6s []net.IP } // Add implements the aghnet.IpsetManager i...
/content/code_sandbox/internal/dnsforward/ipset_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,241
```go package dnsforward import ( "crypto/tls" "net" "testing" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghtest" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/miekg/dns" "github.com/stretchr/testify/assert" "github.com/stretchr/testify...
/content/code_sandbox/internal/dnsforward/beforerequest_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,320
```go package dnsforward import ( "net/netip" "testing" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/AdGuardHome/internal/querylog" "github.com/AdguardTeam/AdGuardHome/internal/stats" "github.com/AdguardTeam/dnsprox...
/content/code_sandbox/internal/dnsforward/stats_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,930
```go package dnsforward import ( "fmt" "sync" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/AdguardTeam/dnsproxy/upstream" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/log" "github.com/miekg/dns" ) // upstreamConfigValidator parses each section of an upstream configuration into...
/content/code_sandbox/internal/dnsforward/configvalidator.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,924
```go package dnsforward import ( "net" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/AdGuardHome/internal/querylog" "github.com/AdguardTeam/AdGuardHome/internal/stats" "github.com/AdguardTeam/dnsproxy/proxy" "github...
/content/code_sandbox/internal/dnsforward/stats.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,350
```go package dnsforward import ( "bytes" "encoding/json" "io" "net" "net/http" "net/http/httptest" "net/netip" "net/url" "os" "path/filepath" "strings" "testing" "testing/fstest" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github...
/content/code_sandbox/internal/dnsforward/http_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
3,759
```go // Package dnsforward contains a DNS forwarding server. package dnsforward import ( "cmp" "context" "fmt" "io" "log/slog" "net" "net/http" "net/netip" "runtime" "slices" "strings" "sync" "sync/atomic" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/AdGuardHome...
/content/code_sandbox/internal/dnsforward/dnsforward.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
7,030
```go package dnsforward import ( "crypto/tls" "net" "net/http" "net/url" "testing" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/AdguardTeam/golibs/logutil/slogutil" "github.com/AdguardTeam/golibs/testutil" "github.com/quic-go/quic-go" "github.com/stretchr/testify/assert" ) // testTLSConn is a tlsCo...
/content/code_sandbox/internal/dnsforward/clientid_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,857
```go package dnsforward import ( "crypto/tls" "crypto/x509" "fmt" "net" "net/netip" "os" "slices" "strings" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghalg" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/AdGua...
/content/code_sandbox/internal/dnsforward/config.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
6,872
```go package dnsforward import ( "slices" "testing" "github.com/stretchr/testify/assert" ) func TestAnyNameMatches(t *testing.T) { dnsNames := []string{"host1", "*.host2", "1.2.3.4"} slices.Sort(dnsNames) testCases := []struct { name string dnsName string want bool }{{ name: "match", dnsN...
/content/code_sandbox/internal/dnsforward/config_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
350
```go package dnsforward import ( "crypto/tls" "fmt" "path" "strings" "github.com/AdguardTeam/dnsproxy/proxy" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/golibs/netutil" "github.com/quic-go/quic-go" ) // ValidateClientID returns an error if id is not a ...
/content/code_sandbox/internal/dnsforward/clientid.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,137
```go package home import ( "context" "crypto/tls" "io/fs" "log/slog" "net/http" "net/netip" "runtime" "sync" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/AdGuardHome/internal/updater" "github.com/AdguardTeam/gol...
/content/code_sandbox/internal/home/web.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,556
```go package home import ( "net/netip" "testing" "github.com/AdguardTeam/AdGuardHome/internal/client" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/AdGuardHome/internal/schedule" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) var testIPv4 = neti...
/content/code_sandbox/internal/home/dns_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,464
```go package home import ( "net/http" "os" "testing" "time" "github.com/josharian/native" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestAuthGL(t *testing.T) { dir := t.TempDir() GLMode = true t.Cleanup(func() { GLMode = false }) glFilePrefix = dir + "/gl_token_" ...
/content/code_sandbox/internal/home/authglinet_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
230
```go package home import ( "fmt" "io/fs" "os" "runtime" "strconv" "strings" "syscall" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/AdGuardHome/internal/aghos" "github.com/AdguardTeam/AdGuardHome/internal/version" "github.com/AdguardTeam/golibs/errors" "github.com/...
/content/code_sandbox/internal/home/service.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
4,911
```go package home import ( "context" "crypto/tls" "net" "net/http" "net/url" ) // httpClient returns a new HTTP client that uses the AdGuard Home's own DNS // server for resolving hostnames. The resulting client should not be used // until [Context.dnsServer] is initialized. // // TODO(a.garipov, e.burkov): Th...
/content/code_sandbox/internal/home/httpclient.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
342
```go package dnsforward import ( "cmp" "crypto/ecdsa" "crypto/rand" "crypto/rsa" "crypto/sha256" "crypto/tls" "crypto/x509" "crypto/x509/pkix" "encoding/hex" "encoding/pem" "fmt" "math/big" "net" "net/netip" "sync" "sync/atomic" "testing" "testing/fstest" "time" "github.com/AdguardTeam/AdGuardHom...
/content/code_sandbox/internal/dnsforward/dnsforward_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
13,475
```go package home import ( "context" "encoding/json" "fmt" "net/http" "os" "os/exec" "runtime" "syscall" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghalg" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/AdGuardH...
/content/code_sandbox/internal/home/controlupdate.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,610
```go package home var clientTags = []string{ "device_audio", "device_camera", "device_gameconsole", "device_laptop", "device_nas", // Network-attached Storage "device_other", "device_pc", "device_phone", "device_printer", "device_securityalarm", "device_tablet", "device_tv", "os_android", "os_ios", "o...
/content/code_sandbox/internal/home/clientstags.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
120
```go package home import ( "net" "testing" "time" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestAuthRateLimiter_Cleanup(t *testing.T) { const key = "some-key" now := time.Now() testCases := []struct { name string att failedAuth wantExp bool }{{ name: ...
/content/code_sandbox/internal/home/authratelimiter_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,252
```go // Package home contains AdGuard Home's HTTP API methods. package home import ( "context" "crypto/x509" "fmt" "io/fs" "log/slog" "net/http" "net/netip" "net/url" "os" "os/signal" "path" "path/filepath" "runtime" "slices" "sync" "syscall" "time" "github.com/AdguardTeam/AdGuardHome/internal/agha...
/content/code_sandbox/internal/home/home.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
6,981
```go package home import ( "testing" "github.com/AdguardTeam/golibs/testutil" ) func TestMain(m *testing.M) { initCmdLineOpts() testutil.DiscardLogOutput(m) } ```
/content/code_sandbox/internal/home/home_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
46
```go package home import ( "testing" "time" "github.com/AdguardTeam/golibs/testutil" "github.com/stretchr/testify/assert" ) var testCertChainData = []byte(`-----BEGIN CERTIFICATE----- your_sha256_hash your_sha256_hash your_sha256_hash your_sha256_hash your_sha256_hash QFw/bdV4fZ9tdWFAVRRkgeGbIZzP7YBD1Ore/O5SQ+D...
/content/code_sandbox/internal/home/tls_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,138
```go package home import ( "crypto/rand" "encoding/binary" "encoding/hex" "fmt" "net/http" "sync" "time" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/golibs/netutil" "go.etcd.io/bbolt" "golang.org/x/crypto/bcrypt" ) // sessionTokenSize is the length ...
/content/code_sandbox/internal/home/auth.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,441
```go package home import ( "encoding/json" "fmt" "net" "net/http" "net/url" "path" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/AdGuardHome/internal/dnsforward" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/httphdr" "github.com/AdguardTeam/golibs/lo...
/content/code_sandbox/internal/home/mobileconfig.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,308
```go package home import ( "fmt" "net/netip" "os" "strconv" "strings" "github.com/AdguardTeam/AdGuardHome/internal/configmigrate" "github.com/AdguardTeam/AdGuardHome/internal/version" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/golibs/stringutil" ) // TODO(a.garipov): Replace with package f...
/content/code_sandbox/internal/home/options.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
3,864
```go package home import ( "bytes" "encoding/json" "net/http" "net/http/httptest" "net/netip" "testing" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "howett.net/plist" ) // setupDNSIPs is a helper that sets up the server IP address configuration for // tests and also tears it ...
/content/code_sandbox/internal/home/mobileconfig_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,231
```go package home import ( "context" "encoding/json" "fmt" "io" "net/http" "net/netip" "os" "os/exec" "path/filepath" "runtime" "time" "unicode/utf8" "github.com/AdguardTeam/AdGuardHome/internal/aghalg" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/AdGuardHome/internal/...
/content/code_sandbox/internal/home/controlinstall.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
3,798
```go //go:build !(openbsd || linux) package home // chooseSystem checks the current system detected and substitutes it with local // implementation if needed. func chooseSystem() {} ```
/content/code_sandbox/internal/home/service_others.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
38
```go package home import ( "sync" "time" ) // failedAuthTTL is the period of time for which the failed attempt will stay in // cache. const failedAuthTTL = 1 * time.Minute // failedAuth is an entry of authRateLimiter's cache. type failedAuth struct { until time.Time num uint } // authRateLimiter used to cach...
/content/code_sandbox/internal/home/authratelimiter.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
725
```go package home import ( "fmt" "net" "net/netip" "slices" "sync" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/AdGuardHome/internal/arpdb" "github.com/AdguardTeam/AdGuardHome/internal/client" "github.com/AdguardTeam/AdGuardHome/internal/dhcpsvc" "github.com/AdguardT...
/content/code_sandbox/internal/home/clients.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
5,001
```go package home import ( "bytes" "cmp" "encoding/json" "io" "net/http" "net/http/httptest" "net/netip" "net/url" "slices" "testing" "github.com/AdguardTeam/AdGuardHome/internal/client" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/AdGuardHome/internal/schedule" "gith...
/content/code_sandbox/internal/home/clientshttp_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,765
```go package home import ( "fmt" "log/slog" "net" "net/netip" "net/url" "os" "path/filepath" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghalg" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/AdGuardHome/internal/...
/content/code_sandbox/internal/home/dns.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
4,349
```go //go:build linux package home import ( "github.com/AdguardTeam/AdGuardHome/internal/aghos" "github.com/kardianos/service" ) // chooseSystem checks the current system detected and substitutes it with local // implementation if needed. func chooseSystem() { sys := service.ChosenSystem() // By default, packag...
/content/code_sandbox/internal/home/service_linux.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
607
```go package home import ( "context" "crypto" "crypto/ecdsa" "crypto/ed25519" "crypto/rsa" "crypto/tls" "crypto/x509" "encoding/base64" "encoding/json" "encoding/pem" "fmt" "net/http" "os" "strings" "sync" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghalg" "github.com/AdguardTeam/AdGuardHo...
/content/code_sandbox/internal/home/tls.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
5,828