Movatterモバイル変換


[0]ホーム

URL:


portmapper

package
v1.92.3Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 16, 2025 License:BSD-3-ClauseImports:37Imported by:20

Details

Repository

github.com/tailscale/tailscale

Links

Documentation

Overview

Package portmapper is a UDP port mapping client. It currently allows for mapping overNAT-PMP, UPnP, and PCP.

Index

Constants

This section is empty.

Variables

Functions

funcIsNoMappingError

func IsNoMappingError(errerror)bool

IsNoMappingError reports whether err is of type NoMappingError.

Types

typeClient

type Client struct {// contains filtered or unexported fields}

Client is a port mapping client.

funcNewClient

func NewClient(cConfig) *Client

NewClient constructs a new portmappingClient from c. It will panic if anyrequired parameters are omitted.

func (*Client)Close

func (c *Client) Close()error

func (*Client)GetCachedMappingOrStartCreatingOneadded inv1.12.0

func (c *Client) GetCachedMappingOrStartCreatingOne() (externalnetip.AddrPort, okbool)

GetCachedMappingOrStartCreatingOne quickly returns with our current cached portmapping, if any.If there's not one, it starts up a background goroutine to create one.If the background goroutine ends up creating one, the onChange hook registered with theNewClient constructor (if any) will fire.

func (*Client)HaveMapping

func (c *Client) HaveMapping()bool

func (*Client)NoteNetworkDown

func (c *Client) NoteNetworkDown()

NoteNetworkDown should be called when the network has transitioned to a down state.It's too late to release port mappings at this point (the user might've just turned offtheir wifi), but we can make sure we invalidate mappings for later when the networkcomes back.

func (*Client)Probe

func (c *Client) Probe(ctxcontext.Context) (resportmappertype.ProbeResult, errerror)

Probe returns a summary of which port mapping services areavailable on the network.

If a probe has run recently and there haven't been any network changes since,the returned result might be server from the Client's cache, withoutsending any network traffic.

func (*Client)SetGatewayLookupFunc

func (c *Client) SetGatewayLookupFunc(f func() (gw, myIPnetip.Addr, okbool))

SetGatewayLookupFunc set the func that returns the machine's default gateway IP, andthe primary IP address for that gateway. It must be called before the client is used.If not called, interfaces.LikelyHomeRouterIP is used.

func (*Client)SetLocalPort

func (c *Client) SetLocalPort(localPortuint16)

SetLocalPort updates the local port number to which we want to portmap UDP traffic.

typeConfigadded inv1.84.0

type Config struct {// EventBus, which must be non-nil, is used for event publication and// subscription by portmapper clients created from this config.EventBus *eventbus.Bus// Logf is called to generate text logs for the client. If nil, logger.Discard is used.Logflogger.Logf// NetMon is the network monitor used by the client. It must be non-nil.NetMon *netmon.Monitor// DebugKnobs, if non-nil, configure the behaviour of the portmapper for// debugging.  If nil, a sensible set of defaults will be used.DebugKnobs *DebugKnobs// OnChange is called to run in a new goroutine whenever the port mapping// status has changed. If nil, no callback is issued.OnChange func()}

Config carries the settings for aClient.

typeDebugKnobsadded inv1.38.0

type DebugKnobs struct {// VerboseLogs tells the Client to print additional debug information// to its logger.VerboseLogsbool// LogHTTP tells the Client to print the raw HTTP logs (from UPnP) to// its logger. This is useful when debugging buggy UPnP// implementations.LogHTTPbool// Disable* disables a specific service from mapping.// If the funcs are nil or return false, the service is not disabled.// Use the corresponding accessor methods without the "Func" suffix// to check whether a service is disabled.DisableUPnPFunc func()boolDisablePMPFunc  func()boolDisablePCPFunc  func()bool// DisableAll, if non-nil, is a func that reports whether all port// mapping attempts should be disabled.DisableAll func()bool}

DebugKnobs contains debug configuration that can be provided when creating aClient. The zero value is valid for use.

func (*DebugKnobs)DisablePCPadded inv1.38.0

func (k *DebugKnobs) DisablePCP()bool

DisablePCP reports whether PCP is disabled.

func (*DebugKnobs)DisablePMPadded inv1.38.0

func (k *DebugKnobs) DisablePMP()bool

DisablePMP reports whether NAT-PMP is disabled.

func (*DebugKnobs)DisableUPnPadded inv1.38.0

func (k *DebugKnobs) DisableUPnP()bool

DisableUPnP reports whether UPnP is disabled.

typeNoMappingError

type NoMappingError struct {// contains filtered or unexported fields}

NoMappingError is returned when no NAT mapping could be done.

func (NoMappingError)Error

func (nmeNoMappingError) Error()string

func (NoMappingError)Unwrap

func (nmeNoMappingError) Unwrap()error

Source Files

View all Source files

Directories

PathSynopsis
Package portmappertype defines the net/portmapper interface, which may or may not be linked into the binary.
Package portmappertype defines the net/portmapper interface, which may or may not be linked into the binary.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f orF : Jump to
y orY : Canonical URL
go.dev uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic.Learn more.

[8]ページ先頭

©2009-2025 Movatter.jp