File: control

package info (click to toggle)
golang-vhost 0.0~git20140120-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 104 kB
  • sloc: makefile: 2
file content (28 lines) | stat: -rw-r--r-- 1,167 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
Source: golang-vhost
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Vincent Bernat <bernat@debian.org>,
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any,
Standards-Version: 4.5.1
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-vhost.git
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-vhost
Homepage: https://github.com/inconshreveable/go-vhost
XS-Go-Import-Path: github.com/inconshreveable/go-vhost
Rules-Requires-Root: no
Testsuite: autopkgtest-pkg-go

Package: golang-vhost-dev
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends},
         ${shlibs:Depends},
Description: Go library to implement virtual hosting for different protocols
 This is a simple library that lets you implement virtual hosting
 functionality for different protocols (HTTP and TLS so far). go-vhost
 has a high-level and a low-level interface. The high-level interface
 lets you wrap existing net.Listeners with "muxer" objects. The
 lower-level interface returns an object implementing net.Conn which
 works as if no bytes had been consumed.