File: control

package info (click to toggle)
golang-github-ccding-go-stun 0.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 140 kB
  • sloc: makefile: 5
file content (31 lines) | stat: -rw-r--r-- 1,119 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Source: golang-github-ccding-go-stun
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Alexandre Viau <aviau@debian.org>
Build-Depends: debhelper (>= 10),
               dh-golang,
               golang-any
Standards-Version: 4.0.0
Homepage: https://github.com/ccding/go-stun
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-ccding-go-stun
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-ccding-go-stun.git
XS-Go-Import-Path: github.com/ccding/go-stun
Testsuite: autopkgtest-pkg-go

Package: golang-github-ccding-go-stun-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends}
Description: 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()
 } ```