golang-github-armon-go-proxyproto 0.1.0-1 source package in Ubuntu

Changelog

golang-github-armon-go-proxyproto (0.1.0-1) unstable; urgency=medium

  * Team upload

  [ Aloïs Micard ]
  * update debian/gitlab-ci.yml (using pkg-go-tools/ci-config)

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit.
  * Update standards version to 4.5.0, no changes needed.
  * Apply multi-arch hints.
    + golang-github-armon-go-proxyproto-dev: Add Multi-Arch: foreign.

  [ Mathias Gibbens ]
  * New upstream release
  * d/control:
    - Update Section to golang
    - Update Standards-Version to 4.7.0 (no changes needed)
    - Update debhelper-compat to v13
  * Drop unneeded Files-Excluded from d/copyright
  * Update d/u/metadata
  * Update d/watch

 -- Mathias Gibbens <email address hidden>  Thu, 25 Jul 2024 04:15:56 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-armon-go-proxyproto_0.1.0-1.dsc 2.3 KiB 5dc461e1248179c83adc1479b112f12fcddf926725ceac10ce4a8519548c6c13
golang-github-armon-go-proxyproto_0.1.0.orig.tar.gz 5.1 KiB d995c64396f23f9ec5f602c63d954f08887532bfe618b6541dd73cb37d479fe1
golang-github-armon-go-proxyproto_0.1.0-1.debian.tar.xz 2.8 KiB 1d6d52ef45ef7af7a5cff1ef4234ae3385addc69a3f1012dd638b1fef46b1b83

No changes file available.

Binary packages built by this source

golang-github-armon-go-proxyproto-dev: Golang package to handle HAProxy Proxy Protocol

 This library provides the proxyproto package which can be used for
 servers listening behind HAProxy of Amazon ELB load balancers.
 Those load balancers support the use of a proxy protocol
 (http://haproxy.1wt.eu/download/1.5/doc/proxy-protocol.txt),
 which provides a simple mechansim for the server to get the address
 of the client instead of the load balancer.
 .
 This library provides both a net.Listener and net.Conn implementation that
 can be used to handle situation in which you may be using the proxy protocol.
 Only proxy protocol version 1, the human-readable form, is understood.
 .
 The only caveat is that one checks for the "PROXY " prefix to determine if
 the protocol is being used. If that string may occur as part of your input,
 then it is ambiguous if the protocol is being used and you may have problems.