File: control

package info (click to toggle)
golang-github-muhlemmer-httpforwarded 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 116 kB
  • sloc: makefile: 2
file content (31 lines) | stat: -rw-r--r-- 1,326 bytes parent folder | download | duplicates (2)
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-muhlemmer-httpforwarded
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Mathias Gibbens <gibmat@debian.org>
Section: golang
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any,
               golang-gopkg-check.v1-dev
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-muhlemmer-httpforwarded
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-muhlemmer-httpforwarded.git
Homepage: https://github.com/muhlemmer/httpforwarded
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/muhlemmer/httpforwarded

Package: golang-github-muhlemmer-httpforwarded-dev
Architecture: all
Multi-Arch: foreign
Depends: golang-gopkg-check.v1-dev,
         ${misc:Depends}
Description: Library for parsing the HTTP Forwarded header (RFC-7239)
 The httpforwarded go package provides utility functions for working
 with the Forwarded HTTP header as defined in RFC-7239
 (https://tools.ietf.org/html/rfc7239). This header is proposed to
 replace the X-Forwarded-For and X-Forwarded-Proto headers, amongst
 others.
 .
 This package was heavily inspired by the mime package in the standard
 library, more specifically the ParseMediaType() function.