package
0.0.7
Repository: https://github.com/scheererj/kubelink.git
Documentation: pkg.go.dev

# Functions

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ListenAndServe listens on the TCP network address addr and then calls Serve with handler to handle requests on incoming connections.
ListenAndServeTLS acts identically to ListenAndServe, except that it expects HTTPS connections.
No description provided by the author
No description provided by the author
ParseIPCIDR parses an ip or cidr and returns the specified ip/netmask as single IPNet.
ParseIPNet parses a cidr and return the specified ip/netmask as single IPNet.
ParseNet parses an ip or cidr and returns the result as cidr describing the netmask/network, only.
Serve accepts incoming HTTP connections on the listener l, creating a new service goroutine for each.
ServeTLS accepts incoming HTTPS connections on the listener l, creating a new service goroutine for each.
No description provided by the author

# Constants

StateActive represents a connection that has read 1 or more bytes of a request.
StateClosed represents a closed connection.
StateHijacked represents a hijacked connection.
StateIdle represents a connection that has finished handling a request and is in the keep-alive state, waiting for a new request.
StateNew represents a new connection that is expected to send a request immediately.

# Variables

ErrAbortHandler is a sentinel panic value to abort a handler.
ErrServerClosed is returned by the Server's Serve, ServeTLS, ListenAndServe, and ListenAndServeTLS methods after a call to Shutdown or Close.
LocalAddrContextKey is a context key.
ServerContextKey is a context key.

# Structs

A Server defines parameters for running an HTTP server.

# Interfaces

If ServeConnection panics, the server (the caller of ServeConnection) assumes that the effect of the panic was isolated to the active request.

# Type aliases

No description provided by the author
A ConnState represents the state of a client connection to a server.
The HandlerFunc type is an adapter to allow the use of ordinary functions as HTTP handlers.
No description provided by the author