github.com/avenga/couper@v1.12.2/config/request/context_key.go (about)

     1  package request
     2  
     3  type ContextKey uint8
     4  
     5  const (
     6  	ContextType ContextKey = iota
     7  	APIName
     8  	AccessControls
     9  	BackendBytes
    10  	BackendName
    11  	BackendParams
    12  	BufferOptions
    13  	ConfigDryRun
    14  	ConnectTimeout
    15  	ContextVariablesSynced
    16  	Endpoint
    17  	EndpointExpectedStatus
    18  	EndpointKind
    19  	EndpointSequenceDependsOn
    20  	Error
    21  	GrantedPermissions
    22  	Handler
    23  	LogCustomAccess
    24  	LogCustomUpstreamValue
    25  	LogCustomUpstreamError
    26  	LogDebugLevel
    27  	LogEntry
    28  	OpenAPI
    29  	PathParams
    30  	RequiredPermission
    31  	ResponseBlock
    32  	ResponseWriter
    33  	RoundTripName
    34  	RoundTripProxy
    35  	ServerName
    36  	ServerTimings
    37  	StartTime
    38  	TokenRequest
    39  	TokenRequestRetries
    40  	UID
    41  	WebsocketsAllowed
    42  	WebsocketsTimeout
    43  	Wildcard
    44  	XFF
    45  )