github.com/kikitux/packer@v0.10.1-0.20160322154024-6237df566f9f/builder/vmware/common/host_ip.go (about)

     1  package common
     2  
     3  // Interface to help find the host IP that is available from within
     4  // the VMware virtual machines.
     5  type HostIPFinder interface {
     6  	HostIP() (string, error)
     7  }