2013-12-31 20:49:32 +00:00
|
|
|
package example_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2014-01-06 20:17:14 +00:00
|
|
|
"github.com/huin/goupnp"
|
2013-12-31 20:49:32 +00:00
|
|
|
"github.com/huin/goupnp/dcps/internetgateway1"
|
|
|
|
)
|
|
|
|
|
2014-01-06 20:17:14 +00:00
|
|
|
// Use discovered WANPPPConnection1 services to find external IP addresses.
|
|
|
|
func Example_WANPPPConnection1_GetExternalIPAddress() {
|
2013-12-31 20:49:32 +00:00
|
|
|
clients, errors, err := internetgateway1.NewWANPPPConnection1Clients()
|
2014-01-06 20:17:14 +00:00
|
|
|
extIPClients := make([]GetExternalIPAddresser, len(clients))
|
|
|
|
for i, client := range clients {
|
|
|
|
extIPClients[i] = client
|
|
|
|
}
|
|
|
|
DisplayExternalIPResults(extIPClients, errors, err)
|
|
|
|
// Output:
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use discovered WANIPConnection services to find external IP addresses.
|
|
|
|
func Example_WANIPConnection_GetExternalIPAddress() {
|
|
|
|
clients, errors, err := internetgateway1.NewWANIPConnection1Clients()
|
|
|
|
extIPClients := make([]GetExternalIPAddresser, len(clients))
|
|
|
|
for i, client := range clients {
|
|
|
|
extIPClients[i] = client
|
|
|
|
}
|
|
|
|
DisplayExternalIPResults(extIPClients, errors, err)
|
|
|
|
// Output:
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetExternalIPAddresser interface {
|
|
|
|
GetExternalIPAddress() (NewExternalIPAddress string, err error)
|
|
|
|
GetServiceClient() *goupnp.ServiceClient
|
|
|
|
}
|
|
|
|
|
|
|
|
func DisplayExternalIPResults(clients []GetExternalIPAddresser, errors []error, err error) {
|
2013-12-31 20:49:32 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, "Error discovering service with UPnP: ", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(errors) > 0 {
|
|
|
|
fmt.Fprintf(os.Stderr, "Error discovering %d services:\n", len(errors))
|
|
|
|
for _, err := range errors {
|
|
|
|
fmt.Println(" ", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Fprintf(os.Stderr, "Successfully discovered %d services:\n", len(clients))
|
|
|
|
for _, client := range clients {
|
2014-01-06 20:17:14 +00:00
|
|
|
device := &client.GetServiceClient().RootDevice.Device
|
2013-12-31 20:49:32 +00:00
|
|
|
|
|
|
|
fmt.Fprintln(os.Stderr, " Device:", device.FriendlyName)
|
|
|
|
if addr, err := client.GetExternalIPAddress(); err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, " Failed to get external IP address: %v\n", err)
|
|
|
|
} else {
|
|
|
|
fmt.Fprintf(os.Stderr, " External IP address: %v\n", addr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|