Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AudriusButkevicius/092215c3f553ab8f1a3eafedbf3e49de to your computer and use it in GitHub Desktop.
Save AudriusButkevicius/092215c3f553ab8f1a3eafedbf3e49de to your computer and use it in GitHub Desktop.
package main
import(
"fmt"
"net"
"github.com/ccding/go-stun/stun"
)
func main(){
cn, _ := net.ListenPacket("udp4", ":44444")
c := stun.NewClientWithConnection(cn)
fmt.Println(c.Discover())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment