mirror of
https://github.com/mmatczuk/go-http-tunnel.git
synced 2026-05-21 06:45:30 -06:00
23 lines
848 B
Go
23 lines
848 B
Go
// Copyright (C) 2017 Michał Matczuk
|
|
// Use of this source code is governed by an AGPL-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package proto
|
|
|
|
// Tunnel describes a single tunnel between client and server. When connecting
|
|
// client sends tunnels to server. If client gets connected server proxies
|
|
// connections to given Host and Addr to the client.
|
|
type Tunnel struct {
|
|
// Protocol specifies tunnel protocol, must be one of protocols known
|
|
// by the server.
|
|
Protocol string
|
|
// Host specified HTTP request host, it's required for HTTP and WS
|
|
// tunnels.
|
|
Host string
|
|
// Auth specifies HTTP basic auth credentials in form "user:password",
|
|
// if set server would protect HTTP and WS tunnels with basic auth.
|
|
Auth string
|
|
// Addr specifies TCP address server would listen on, it's required
|
|
// for TCP tunnels.
|
|
Addr string
|
|
}
|