2014-05-13 23:39:00 +02:00
|
|
|
package common
|
2014-04-06 19:21:22 +02:00
|
|
|
|
2016-12-12 00:37:41 +02:00
|
|
|
// HostIPFinder allows to find the host IP that is available from within
|
2014-05-02 00:58:17 +04:00
|
|
|
// the Parallels virtual machines.
|
2014-04-06 19:21:22 +02:00
|
|
|
type HostIPFinder interface {
|
|
|
|
HostIP() (string, error)
|
|
|
|
}
|