1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 23:06:14 -04:00
v2fly/common/session/session.go

95 lines
2.3 KiB
Go
Raw Normal View History

2018-04-03 16:34:59 -04:00
// Package session provides functions for sessions of incoming requests.
package session // import "v2ray.com/core/common/session"
2018-02-22 09:26:00 -05:00
import (
"context"
"math/rand"
"v2ray.com/core/common/errors"
"v2ray.com/core/common/net"
2018-10-15 02:36:50 -04:00
"v2ray.com/core/common/protocol"
2018-02-22 09:26:00 -05:00
)
2018-04-03 16:34:59 -04:00
// ID of a session.
2018-02-22 09:26:00 -05:00
type ID uint32
2018-04-03 16:34:59 -04:00
// NewID generates a new ID. The generated ID is high likely to be unique, but not cryptographically secure.
// The generated ID will never be 0.
2018-02-22 09:26:00 -05:00
func NewID() ID {
for {
id := ID(rand.Uint32())
if id != 0 {
return id
}
}
}
2018-10-15 02:51:24 -04:00
// ExportIDToError transfers session.ID into an error object, for logging purpose.
// This can be used with error.WriteToLog().
func ExportIDToError(ctx context.Context) errors.ExportOption {
id := IDFromContext(ctx)
return func(h *errors.ExportOptionHolder) {
h.SessionID = uint32(id)
}
}
2018-10-15 02:51:24 -04:00
// Inbound is the metadata of an inbound connection.
type Inbound struct {
2018-10-15 02:51:24 -04:00
// Source address of the inbound connection.
Source net.Destination
// Getaway address
Gateway net.Destination
2018-10-15 02:51:24 -04:00
// Tag of the inbound proxy that handles the connection.
Tag string
2018-10-15 02:36:50 -04:00
// User is the user that authencates for the inbound. May be nil if the protocol allows anounymous traffic.
User *protocol.MemoryUser
}
2018-10-15 02:51:24 -04:00
// Outbound is the metadata of an outbound connection.
type Outbound struct {
2018-10-15 02:51:24 -04:00
// Target address of the outbound connection.
Target net.Destination
// Gateway address
Gateway net.Address
}
2019-02-22 10:58:16 -05:00
// SniffingRequest controls the behavior of content sniffing.
2019-02-22 18:27:21 -05:00
type SniffingRequest struct {
OverrideDestinationForProtocol []string
Enabled bool
}
2019-02-22 10:58:16 -05:00
// Content is the metadata of the connection content.
type Content struct {
// Protocol of current content.
Protocol string
2019-02-22 18:27:21 -05:00
SniffingRequest SniffingRequest
2019-02-28 05:45:06 -05:00
Attributes map[string]string
2020-03-02 05:07:43 -05:00
SkipRoutePick bool
2019-02-28 05:45:06 -05:00
}
// Sockopt is the settings for socket connection.
type Sockopt struct {
// Mark of the socket connection.
Mark int32
}
// SetAttribute attachs additional string attributes to content.
func (c *Content) SetAttribute(name string, value string) {
2019-02-28 08:39:50 -05:00
if c.Attributes == nil {
c.Attributes = make(map[string]string)
2019-02-28 05:45:06 -05:00
}
2019-02-28 08:39:50 -05:00
c.Attributes[name] = value
2019-02-28 05:45:06 -05:00
}
// Attribute retrieves additional string attributes from content.
func (c *Content) Attribute(name string) string {
2019-02-28 08:39:50 -05:00
if c.Attributes == nil {
return ""
2019-02-28 05:45:06 -05:00
}
2019-02-28 08:39:50 -05:00
return c.Attributes[name]
2019-02-22 10:58:16 -05:00
}