6b01264373
See https://github.com/ooni/probe/issues/2352 Co-authored-by: decfox <decfox@github.com> Co-authored-by: Simone Basso <bassosimone@gmail.com>
13 lines
332 B
Go
13 lines
332 B
Go
package engine
|
|
|
|
// LocationProvider is an interface that returns the current location. The
|
|
// github.com/ooni/probe-cli/v3/internal/engine/session.Session implements it.
|
|
type LocationProvider interface {
|
|
ProbeASN() uint
|
|
ProbeASNString() string
|
|
ProbeCC() string
|
|
ProbeIP() string
|
|
ProbeNetworkName() string
|
|
ResolverIP() string
|
|
}
|