Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Address ¶
type Address struct {
Address AddressClass `json:"Address"`
}
type AddressClass ¶
type AddressClass struct {
SocketAddress SocketAddress `json:"SocketAddress"`
}
type Attributes ¶
type Attributes struct { Source Destination `json:"source"` Destination Destination `json:"destination"` Request Request `json:"request"` }
type Destination ¶
type Destination struct {
Address Address `json:"address"`
}
type Input ¶
type Input struct { ParsedPath []string `json:"parsed_path"` ParsedQuery ParsedQuery `json:"parsed_query"` ParsedBody ParsedBody `json:"parsed_body"` Attributes Attributes `json:"attributes"` }
type ParsedBody ¶
type ParsedQuery ¶
type ParsedQuery struct {
Lang []string `json:"lang"`
}
type PortSpecifier ¶
type PortSpecifier struct {
PortValue int64 `json:"PortValue"`
}
type SocketAddress ¶
type SocketAddress struct { Address string `json:"address"` PortSpecifier PortSpecifier `json:"PortSpecifier"` }