golang-github-ccding-go-stun 0.1.0-3 source package in Ubuntu

Changelog

golang-github-ccding-go-stun (0.1.0-3) unstable; urgency=medium

  * point Vcs-* urls to salsa.d.o subproject

 -- Alexandre Viau <email address hidden>  Thu, 25 Jan 2018 16:42:37 -0500

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-ccding-go-stun_0.1.0-3.dsc 2.2 KiB 9f5f7d18c3946194265f76b56433f4f6610485ae147db928f61985d448ac5700
golang-github-ccding-go-stun_0.1.0.orig.tar.gz 13.4 KiB 878644cb25f95b8de111de5ee94d0de153b8d4b13789e1bd1a2df9d388b8a4d7
golang-github-ccding-go-stun_0.1.0-3.debian.tar.xz 1.9 KiB 798e434a373db3bc6118094fad5efa4c1ecb84ed315303eef33a97f581743d3d

Available diffs

No changes file available.

Binary packages built by this source

golang-github-ccding-go-stun-dev: implementation of the STUN client (RFC 3489 and RFC 5389)

 go-stun is a STUN (RFC 3489, 5389) client implementation in golang
 (a.k.a. UDP hole punching).
 .
 Use the Library The library github.com/ccding/go-stun/stun is extremely
 easy to use -- just one line of code.
 .
 ```go import "github.com/ccding/go-stun/stun"
 .
 func main() {
     nat, host, err := stun.NewClient().Discover()
 } ```