Affected by GO-2023-1699
and 5 other vulnerabilities
GO-2023-1699 : Docker Swarm encrypted overlay network may be unauthenticated in github.com/docker/docker
GO-2023-1700 : Docker Swarm encrypted overlay network traffic may be unencrypted in github.com/docker/docker
GO-2023-1701 : Docker Swarm encrypted overlay network with a single endpoint is unauthenticated in github.com/docker/docker
GO-2025-3829 : Moby firewalld reload removes bridge network isolation in github.com/docker/docker
GO-2026-4883 : Moby has an Off-by-one error in its plugin privilege validation in github.com/docker/docker
GO-2026-4887 : Moby has AuthZ plugin bypass when provided oversized request bodies in github.com/docker/docker
Discover Packages
github.com/docker/docker
pkg
progress
package
Version:
v20.10.23+incompatible
Opens a new window with list of versions in this module.
Published: Jan 18, 2023
License: Apache-2.0
Opens a new window with license information.
Imports: 4
Opens a new window with list of imports.
Imported by: 2,600
Opens a new window with list of known importers.
Jump to ...
Documentation
Index
Constants
Variables
Functions
Aux(out, a)
Message(out, id, message)
Messagef(out, id, format, a)
Update(out, id, action)
Updatef(out, id, format, a)
Types
Source Files
Documentation
Documentation
¶
func Aux(out Output, a interface{})
func Message(out Output, id, message string)
func Messagef(out Output, id, format string, a ...interface{})
func Update(out Output, id, action string)
func Updatef(out Output, id, format string, a ...interface{})
type Output
type Progress
type Reader
func Aux(out Output , a interface{})
Aux sends auxiliary information over a progress interface, which will not be
formatted for the UI. This is used for things such as push signing.
Message is a convenience function to write a progress message to the channel.
func Messagef(out Output , id, format string , a ...interface{})
Messagef is a convenience function to write a printf-formatted progress
message to the channel.
Update is a convenience function to write a progress update to the channel.
func Updatef(out Output , id, format string , a ...interface{})
Updatef is a convenience function to write a printf-formatted progress update
to the channel.
Output is an interface for writing progress information. It's
like a writer for progress, but we don't call it Writer because
that would be confusing next to ProgressReader (also, because it
doesn't implement the io.Writer interface).
ChanOutput returns an Output that writes progress updates to the
supplied channel.
DiscardOutput returns an Output that discards progress
Progress represents the progress of a transfer.
Reader is a Reader with progress bar.
NewProgressReader creates a new ProgressReader.
Close closes the progress reader and its underlying reader.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.