Update dependencies. Closes #9
This commit is contained in:
parent
f658c61951
commit
fa3105d058
73 changed files with 9299 additions and 287 deletions
16
Gopkg.lock
generated
16
Gopkg.lock
generated
|
@ -13,7 +13,7 @@
|
||||||
"crypto/curve25519",
|
"crypto/curve25519",
|
||||||
"crypto/hkdf"
|
"crypto/hkdf"
|
||||||
]
|
]
|
||||||
revision = "c31092027237441cffba1b9cb148eadf7c83c3d2"
|
revision = "92ffb4c11a14df04cc0fd8b285b8ef2efb023d54"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
name = "github.com/fatih/color"
|
name = "github.com/fatih/color"
|
||||||
|
@ -42,8 +42,8 @@
|
||||||
[[projects]]
|
[[projects]]
|
||||||
name = "github.com/gorilla/websocket"
|
name = "github.com/gorilla/websocket"
|
||||||
packages = ["."]
|
packages = ["."]
|
||||||
revision = "3ff3320c2a1756a3691521efc290b4701575147c"
|
revision = "66b9c49e59c6c48f0ffce28c2d8b8a5678502c6d"
|
||||||
version = "v1.3.0"
|
version = "v1.4.0"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
name = "github.com/mattn/go-colorable"
|
name = "github.com/mattn/go-colorable"
|
||||||
|
@ -86,7 +86,7 @@
|
||||||
"curve25519",
|
"curve25519",
|
||||||
"hkdf"
|
"hkdf"
|
||||||
]
|
]
|
||||||
revision = "182538f80094b6a8efaade63a8fd8e0d9d5843dd"
|
revision = "0e37d006457bf46f9e6692014ba72ef82c33022c"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
|
@ -95,13 +95,13 @@
|
||||||
"html",
|
"html",
|
||||||
"html/atom"
|
"html/atom"
|
||||||
]
|
]
|
||||||
revision = "8a410e7b638dca158bf9e766925842f6651ff828"
|
revision = "2f5d2388922f370f4355f327fcf4cfe9f5583908"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
name = "golang.org/x/sys"
|
name = "golang.org/x/sys"
|
||||||
packages = ["unix"]
|
packages = ["unix"]
|
||||||
revision = "fa5fdf94c78965f1aa8423f0cc50b8b8d728b05a"
|
revision = "d47a0f3392421c5624713c9a19fe781f651f8a50"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
name = "gopkg.in/russross/blackfriday.v2"
|
name = "gopkg.in/russross/blackfriday.v2"
|
||||||
|
@ -122,7 +122,7 @@
|
||||||
".",
|
".",
|
||||||
"format"
|
"format"
|
||||||
]
|
]
|
||||||
revision = "b018830e10612c04065723de7aa49f35b37864a6"
|
revision = "920b154a410aeb5a55200d7b21363732abff3502"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
|
@ -140,7 +140,7 @@
|
||||||
branch = "master"
|
branch = "master"
|
||||||
name = "maunium.net/go/mautrix-appservice"
|
name = "maunium.net/go/mautrix-appservice"
|
||||||
packages = ["."]
|
packages = ["."]
|
||||||
revision = "4e24d1dd7bd9d89f946ec56cb4350ce777d17bfe"
|
revision = "c432f77c754b761a8f67bc0bb2d18cfb600341ad"
|
||||||
|
|
||||||
[solve-meta]
|
[solve-meta]
|
||||||
analyzer-name = "dep"
|
analyzer-name = "dep"
|
||||||
|
|
|
@ -63,7 +63,7 @@ func (store *AutosavingStateStore) MarkRegistered(userID string) {
|
||||||
store.Save()
|
store.Save()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (store *AutosavingStateStore) SetMembership(roomID, userID, membership string) {
|
func (store *AutosavingStateStore) SetMembership(roomID, userID string, membership gomatrix.Membership) {
|
||||||
store.StateStore.SetMembership(roomID, userID, membership)
|
store.StateStore.SetMembership(roomID, userID, membership)
|
||||||
store.Save()
|
store.Save()
|
||||||
}
|
}
|
||||||
|
|
145
vendor/github.com/Rhymen/go-whatsapp/conn.go
generated
vendored
145
vendor/github.com/Rhymen/go-whatsapp/conn.go
generated
vendored
|
@ -6,9 +6,6 @@ import (
|
||||||
"crypto/sha256"
|
"crypto/sha256"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/Rhymen/go-whatsapp/binary"
|
|
||||||
"github.com/Rhymen/go-whatsapp/crypto/cbc"
|
|
||||||
"github.com/gorilla/websocket"
|
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
|
@ -16,6 +13,10 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/Rhymen/go-whatsapp/binary"
|
||||||
|
"github.com/Rhymen/go-whatsapp/crypto/cbc"
|
||||||
|
"github.com/gorilla/websocket"
|
||||||
)
|
)
|
||||||
|
|
||||||
type metric byte
|
type metric byte
|
||||||
|
@ -79,6 +80,8 @@ It holds all necessary information to make the package work internally.
|
||||||
*/
|
*/
|
||||||
type Conn struct {
|
type Conn struct {
|
||||||
wsConn *websocket.Conn
|
wsConn *websocket.Conn
|
||||||
|
wsConnOK bool
|
||||||
|
wsConnMutex sync.RWMutex
|
||||||
session *Session
|
session *Session
|
||||||
listener map[string]chan string
|
listener map[string]chan string
|
||||||
listenerMutex sync.RWMutex
|
listenerMutex sync.RWMutex
|
||||||
|
@ -104,20 +107,9 @@ Creates a new connection with a given timeout. The websocket connection to the W
|
||||||
The goroutine for handling incoming messages is started
|
The goroutine for handling incoming messages is started
|
||||||
*/
|
*/
|
||||||
func NewConn(timeout time.Duration) (*Conn, error) {
|
func NewConn(timeout time.Duration) (*Conn, error) {
|
||||||
dialer := &websocket.Dialer{
|
|
||||||
ReadBufferSize: 25 * 1024 * 1024,
|
|
||||||
WriteBufferSize: 10 * 1024 * 1024,
|
|
||||||
HandshakeTimeout: timeout,
|
|
||||||
}
|
|
||||||
|
|
||||||
headers := http.Header{"Origin": []string{"https://web.whatsapp.com"}}
|
|
||||||
wsConn, _, err := dialer.Dial("wss://w3.web.whatsapp.com/ws", headers)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("couldn't dial whatsapp web websocket: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
wac := &Conn{
|
wac := &Conn{
|
||||||
wsConn: wsConn,
|
wsConn: nil, // will be set in connect()
|
||||||
|
wsConnMutex: sync.RWMutex{},
|
||||||
listener: make(map[string]chan string),
|
listener: make(map[string]chan string),
|
||||||
listenerMutex: sync.RWMutex{},
|
listenerMutex: sync.RWMutex{},
|
||||||
writeChan: make(chan wsMsg),
|
writeChan: make(chan wsMsg),
|
||||||
|
@ -130,6 +122,10 @@ func NewConn(timeout time.Duration) (*Conn, error) {
|
||||||
shortClientName: "go-whatsapp",
|
shortClientName: "go-whatsapp",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err := wac.connect(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
go wac.readPump()
|
go wac.readPump()
|
||||||
go wac.writePump()
|
go wac.writePump()
|
||||||
go wac.keepAlive(20000, 90000)
|
go wac.keepAlive(20000, 90000)
|
||||||
|
@ -137,6 +133,80 @@ func NewConn(timeout time.Duration) (*Conn, error) {
|
||||||
return wac, nil
|
return wac, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (wac *Conn) isConnected() bool {
|
||||||
|
wac.wsConnMutex.RLock()
|
||||||
|
defer wac.wsConnMutex.RUnlock()
|
||||||
|
if wac.wsConn == nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
if wac.wsConnOK {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
// just send a keepalive to test the connection
|
||||||
|
wac.sendKeepAlive()
|
||||||
|
|
||||||
|
// this method is expected to be called by loops. So we can just return false
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// connect should be guarded with wsConnMutex
|
||||||
|
func (wac *Conn) connect() error {
|
||||||
|
dialer := &websocket.Dialer{
|
||||||
|
ReadBufferSize: 25 * 1024 * 1024,
|
||||||
|
WriteBufferSize: 10 * 1024 * 1024,
|
||||||
|
HandshakeTimeout: wac.msgTimeout,
|
||||||
|
}
|
||||||
|
|
||||||
|
headers := http.Header{"Origin": []string{"https://web.whatsapp.com"}}
|
||||||
|
wsConn, _, err := dialer.Dial("wss://w3.web.whatsapp.com/ws", headers)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("couldn't dial whatsapp web websocket: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
wsConn.SetCloseHandler(func(code int, text string) error {
|
||||||
|
fmt.Fprintf(os.Stderr, "websocket connection closed(%d, %s)\n", code, text)
|
||||||
|
|
||||||
|
// from default CloseHandler
|
||||||
|
message := websocket.FormatCloseMessage(code, "")
|
||||||
|
wsConn.WriteControl(websocket.CloseMessage, message, time.Now().Add(time.Second))
|
||||||
|
|
||||||
|
// our close handling
|
||||||
|
if websocket.IsUnexpectedCloseError(err, websocket.CloseNormalClosure, websocket.CloseGoingAway) {
|
||||||
|
fmt.Println("Trigger reconnect")
|
||||||
|
go wac.reconnect()
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
|
||||||
|
wac.wsConn = wsConn
|
||||||
|
wac.wsConnOK = true
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// reconnect should be run as go routine
|
||||||
|
func (wac *Conn) reconnect() {
|
||||||
|
wac.wsConnMutex.Lock()
|
||||||
|
wac.wsConn.Close()
|
||||||
|
wac.wsConn = nil
|
||||||
|
wac.wsConnOK = false
|
||||||
|
wac.wsConnMutex.Unlock()
|
||||||
|
|
||||||
|
// wait up to 60 seconds and then reconnect. As writePump should send immediately, it might
|
||||||
|
// reconnect as well. So we check its existance before reconnecting
|
||||||
|
for !wac.isConnected() {
|
||||||
|
time.Sleep(time.Duration(rand.Intn(60)) * time.Second)
|
||||||
|
|
||||||
|
wac.wsConnMutex.Lock()
|
||||||
|
if wac.wsConn == nil {
|
||||||
|
if err := wac.connect(); err != nil {
|
||||||
|
fmt.Fprintf(os.Stderr, "could not reconnect to websocket: %v\n", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
wac.wsConnMutex.Unlock()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (wac *Conn) write(data []interface{}) (<-chan string, error) {
|
func (wac *Conn) write(data []interface{}) (<-chan string, error) {
|
||||||
d, err := json.Marshal(data)
|
d, err := json.Marshal(data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -201,11 +271,15 @@ func (wac *Conn) readPump() {
|
||||||
for {
|
for {
|
||||||
msgType, msg, err := wac.wsConn.ReadMessage()
|
msgType, msg, err := wac.wsConn.ReadMessage()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
wac.wsConnOK = false
|
||||||
if websocket.IsUnexpectedCloseError(err, websocket.CloseGoingAway) {
|
if websocket.IsUnexpectedCloseError(err, websocket.CloseGoingAway) {
|
||||||
wac.handle(fmt.Errorf("unexpected websocket close: %v", err))
|
wac.handle(fmt.Errorf("unexpected websocket close: %v", err))
|
||||||
}
|
}
|
||||||
break
|
// sleep for a second and retry reading the next message
|
||||||
|
time.Sleep(time.Second)
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
|
wac.wsConnOK = true
|
||||||
|
|
||||||
data := strings.SplitN(string(msg), ",", 2)
|
data := strings.SplitN(string(msg), ",", 2)
|
||||||
|
|
||||||
|
@ -249,18 +323,43 @@ func (wac *Conn) readPump() {
|
||||||
|
|
||||||
func (wac *Conn) writePump() {
|
func (wac *Conn) writePump() {
|
||||||
for msg := range wac.writeChan {
|
for msg := range wac.writeChan {
|
||||||
if err := wac.wsConn.WriteMessage(msg.messageType, msg.data); err != nil {
|
for !wac.isConnected() {
|
||||||
fmt.Fprintf(os.Stderr, "error writing to socket: %v", err)
|
// reconnect to send the message ASAP
|
||||||
|
wac.wsConnMutex.Lock()
|
||||||
|
if wac.wsConn == nil {
|
||||||
|
if err := wac.connect(); err != nil {
|
||||||
|
fmt.Fprintf(os.Stderr, "could not reconnect to websocket: %v\n", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
wac.wsConnMutex.Unlock()
|
||||||
|
if !wac.isConnected() {
|
||||||
|
// reconnecting failed. Sleep for a while and try again afterwards
|
||||||
|
time.Sleep(time.Duration(rand.Intn(5)) * time.Second)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
if err := wac.wsConn.WriteMessage(msg.messageType, msg.data); err != nil {
|
||||||
|
fmt.Fprintf(os.Stderr, "error writing to socket: %v\n", err)
|
||||||
|
wac.wsConnOK = false
|
||||||
|
// add message to channel again to no loose it
|
||||||
|
go func() {
|
||||||
|
wac.writeChan <- msg
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (wac *Conn) sendKeepAlive() {
|
||||||
|
// whatever issues might be there allow sending this message
|
||||||
|
wac.wsConnOK = true
|
||||||
|
wac.writeChan <- wsMsg{
|
||||||
|
messageType: websocket.TextMessage,
|
||||||
|
data: []byte("?,,"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (wac *Conn) keepAlive(minIntervalMs int, maxIntervalMs int) {
|
func (wac *Conn) keepAlive(minIntervalMs int, maxIntervalMs int) {
|
||||||
for {
|
for {
|
||||||
wac.writeChan <- wsMsg{
|
wac.sendKeepAlive()
|
||||||
messageType: websocket.TextMessage,
|
|
||||||
data: []byte("?,,"),
|
|
||||||
}
|
|
||||||
interval := rand.Intn(maxIntervalMs-minIntervalMs) + minIntervalMs
|
interval := rand.Intn(maxIntervalMs-minIntervalMs) + minIntervalMs
|
||||||
<-time.After(time.Duration(interval) * time.Millisecond)
|
<-time.After(time.Duration(interval) * time.Millisecond)
|
||||||
}
|
}
|
||||||
|
|
4
vendor/github.com/gorilla/websocket/.travis.yml
generated
vendored
4
vendor/github.com/gorilla/websocket/.travis.yml
generated
vendored
|
@ -3,13 +3,11 @@ sudo: false
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- go: 1.4
|
|
||||||
- go: 1.5.x
|
|
||||||
- go: 1.6.x
|
|
||||||
- go: 1.7.x
|
- go: 1.7.x
|
||||||
- go: 1.8.x
|
- go: 1.8.x
|
||||||
- go: 1.9.x
|
- go: 1.9.x
|
||||||
- go: 1.10.x
|
- go: 1.10.x
|
||||||
|
- go: 1.11.x
|
||||||
- go: tip
|
- go: tip
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- go: tip
|
- go: tip
|
||||||
|
|
101
vendor/github.com/gorilla/websocket/client.go
generated
vendored
101
vendor/github.com/gorilla/websocket/client.go
generated
vendored
|
@ -6,12 +6,14 @@ package websocket
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"context"
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"errors"
|
"errors"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"net/http/httptrace"
|
||||||
"net/url"
|
"net/url"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
@ -51,6 +53,10 @@ type Dialer struct {
|
||||||
// NetDial is nil, net.Dial is used.
|
// NetDial is nil, net.Dial is used.
|
||||||
NetDial func(network, addr string) (net.Conn, error)
|
NetDial func(network, addr string) (net.Conn, error)
|
||||||
|
|
||||||
|
// NetDialContext specifies the dial function for creating TCP connections. If
|
||||||
|
// NetDialContext is nil, net.DialContext is used.
|
||||||
|
NetDialContext func(ctx context.Context, network, addr string) (net.Conn, error)
|
||||||
|
|
||||||
// Proxy specifies a function to return a proxy for a given
|
// Proxy specifies a function to return a proxy for a given
|
||||||
// Request. If the function returns a non-nil error, the
|
// Request. If the function returns a non-nil error, the
|
||||||
// request is aborted with the provided error.
|
// request is aborted with the provided error.
|
||||||
|
@ -69,6 +75,17 @@ type Dialer struct {
|
||||||
// do not limit the size of the messages that can be sent or received.
|
// do not limit the size of the messages that can be sent or received.
|
||||||
ReadBufferSize, WriteBufferSize int
|
ReadBufferSize, WriteBufferSize int
|
||||||
|
|
||||||
|
// WriteBufferPool is a pool of buffers for write operations. If the value
|
||||||
|
// is not set, then write buffers are allocated to the connection for the
|
||||||
|
// lifetime of the connection.
|
||||||
|
//
|
||||||
|
// A pool is most useful when the application has a modest volume of writes
|
||||||
|
// across a large number of connections.
|
||||||
|
//
|
||||||
|
// Applications should use a single pool for each unique value of
|
||||||
|
// WriteBufferSize.
|
||||||
|
WriteBufferPool BufferPool
|
||||||
|
|
||||||
// Subprotocols specifies the client's requested subprotocols.
|
// Subprotocols specifies the client's requested subprotocols.
|
||||||
Subprotocols []string
|
Subprotocols []string
|
||||||
|
|
||||||
|
@ -84,6 +101,11 @@ type Dialer struct {
|
||||||
Jar http.CookieJar
|
Jar http.CookieJar
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Dial creates a new client connection by calling DialContext with a background context.
|
||||||
|
func (d *Dialer) Dial(urlStr string, requestHeader http.Header) (*Conn, *http.Response, error) {
|
||||||
|
return d.DialContext(context.Background(), urlStr, requestHeader)
|
||||||
|
}
|
||||||
|
|
||||||
var errMalformedURL = errors.New("malformed ws or wss URL")
|
var errMalformedURL = errors.New("malformed ws or wss URL")
|
||||||
|
|
||||||
func hostPortNoPort(u *url.URL) (hostPort, hostNoPort string) {
|
func hostPortNoPort(u *url.URL) (hostPort, hostNoPort string) {
|
||||||
|
@ -111,19 +133,20 @@ var DefaultDialer = &Dialer{
|
||||||
}
|
}
|
||||||
|
|
||||||
// nilDialer is dialer to use when receiver is nil.
|
// nilDialer is dialer to use when receiver is nil.
|
||||||
var nilDialer Dialer = *DefaultDialer
|
var nilDialer = *DefaultDialer
|
||||||
|
|
||||||
// Dial creates a new client connection. Use requestHeader to specify the
|
// DialContext creates a new client connection. Use requestHeader to specify the
|
||||||
// origin (Origin), subprotocols (Sec-WebSocket-Protocol) and cookies (Cookie).
|
// origin (Origin), subprotocols (Sec-WebSocket-Protocol) and cookies (Cookie).
|
||||||
// Use the response.Header to get the selected subprotocol
|
// Use the response.Header to get the selected subprotocol
|
||||||
// (Sec-WebSocket-Protocol) and cookies (Set-Cookie).
|
// (Sec-WebSocket-Protocol) and cookies (Set-Cookie).
|
||||||
//
|
//
|
||||||
|
// The context will be used in the request and in the Dialer
|
||||||
|
//
|
||||||
// If the WebSocket handshake fails, ErrBadHandshake is returned along with a
|
// If the WebSocket handshake fails, ErrBadHandshake is returned along with a
|
||||||
// non-nil *http.Response so that callers can handle redirects, authentication,
|
// non-nil *http.Response so that callers can handle redirects, authentication,
|
||||||
// etcetera. The response body may not contain the entire response and does not
|
// etcetera. The response body may not contain the entire response and does not
|
||||||
// need to be closed by the application.
|
// need to be closed by the application.
|
||||||
func (d *Dialer) Dial(urlStr string, requestHeader http.Header) (*Conn, *http.Response, error) {
|
func (d *Dialer) DialContext(ctx context.Context, urlStr string, requestHeader http.Header) (*Conn, *http.Response, error) {
|
||||||
|
|
||||||
if d == nil {
|
if d == nil {
|
||||||
d = &nilDialer
|
d = &nilDialer
|
||||||
}
|
}
|
||||||
|
@ -161,6 +184,7 @@ func (d *Dialer) Dial(urlStr string, requestHeader http.Header) (*Conn, *http.Re
|
||||||
Header: make(http.Header),
|
Header: make(http.Header),
|
||||||
Host: u.Host,
|
Host: u.Host,
|
||||||
}
|
}
|
||||||
|
req = req.WithContext(ctx)
|
||||||
|
|
||||||
// Set the cookies present in the cookie jar of the dialer
|
// Set the cookies present in the cookie jar of the dialer
|
||||||
if d.Jar != nil {
|
if d.Jar != nil {
|
||||||
|
@ -204,20 +228,30 @@ func (d *Dialer) Dial(urlStr string, requestHeader http.Header) (*Conn, *http.Re
|
||||||
req.Header["Sec-WebSocket-Extensions"] = []string{"permessage-deflate; server_no_context_takeover; client_no_context_takeover"}
|
req.Header["Sec-WebSocket-Extensions"] = []string{"permessage-deflate; server_no_context_takeover; client_no_context_takeover"}
|
||||||
}
|
}
|
||||||
|
|
||||||
var deadline time.Time
|
|
||||||
if d.HandshakeTimeout != 0 {
|
if d.HandshakeTimeout != 0 {
|
||||||
deadline = time.Now().Add(d.HandshakeTimeout)
|
var cancel func()
|
||||||
|
ctx, cancel = context.WithTimeout(ctx, d.HandshakeTimeout)
|
||||||
|
defer cancel()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get network dial function.
|
// Get network dial function.
|
||||||
netDial := d.NetDial
|
var netDial func(network, add string) (net.Conn, error)
|
||||||
if netDial == nil {
|
|
||||||
netDialer := &net.Dialer{Deadline: deadline}
|
if d.NetDialContext != nil {
|
||||||
netDial = netDialer.Dial
|
netDial = func(network, addr string) (net.Conn, error) {
|
||||||
|
return d.NetDialContext(ctx, network, addr)
|
||||||
|
}
|
||||||
|
} else if d.NetDial != nil {
|
||||||
|
netDial = d.NetDial
|
||||||
|
} else {
|
||||||
|
netDialer := &net.Dialer{}
|
||||||
|
netDial = func(network, addr string) (net.Conn, error) {
|
||||||
|
return netDialer.DialContext(ctx, network, addr)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// If needed, wrap the dial function to set the connection deadline.
|
// If needed, wrap the dial function to set the connection deadline.
|
||||||
if !deadline.Equal(time.Time{}) {
|
if deadline, ok := ctx.Deadline(); ok {
|
||||||
forwardDial := netDial
|
forwardDial := netDial
|
||||||
netDial = func(network, addr string) (net.Conn, error) {
|
netDial = func(network, addr string) (net.Conn, error) {
|
||||||
c, err := forwardDial(network, addr)
|
c, err := forwardDial(network, addr)
|
||||||
|
@ -249,7 +283,17 @@ func (d *Dialer) Dial(urlStr string, requestHeader http.Header) (*Conn, *http.Re
|
||||||
}
|
}
|
||||||
|
|
||||||
hostPort, hostNoPort := hostPortNoPort(u)
|
hostPort, hostNoPort := hostPortNoPort(u)
|
||||||
|
trace := httptrace.ContextClientTrace(ctx)
|
||||||
|
if trace != nil && trace.GetConn != nil {
|
||||||
|
trace.GetConn(hostPort)
|
||||||
|
}
|
||||||
|
|
||||||
netConn, err := netDial("tcp", hostPort)
|
netConn, err := netDial("tcp", hostPort)
|
||||||
|
if trace != nil && trace.GotConn != nil {
|
||||||
|
trace.GotConn(httptrace.GotConnInfo{
|
||||||
|
Conn: netConn,
|
||||||
|
})
|
||||||
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
|
@ -267,22 +311,31 @@ func (d *Dialer) Dial(urlStr string, requestHeader http.Header) (*Conn, *http.Re
|
||||||
}
|
}
|
||||||
tlsConn := tls.Client(netConn, cfg)
|
tlsConn := tls.Client(netConn, cfg)
|
||||||
netConn = tlsConn
|
netConn = tlsConn
|
||||||
if err := tlsConn.Handshake(); err != nil {
|
|
||||||
return nil, nil, err
|
var err error
|
||||||
|
if trace != nil {
|
||||||
|
err = doHandshakeWithTrace(trace, tlsConn, cfg)
|
||||||
|
} else {
|
||||||
|
err = doHandshake(tlsConn, cfg)
|
||||||
}
|
}
|
||||||
if !cfg.InsecureSkipVerify {
|
|
||||||
if err := tlsConn.VerifyHostname(cfg.ServerName); err != nil {
|
if err != nil {
|
||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
conn := newConn(netConn, false, d.ReadBufferSize, d.WriteBufferSize)
|
conn := newConn(netConn, false, d.ReadBufferSize, d.WriteBufferSize, d.WriteBufferPool, nil, nil)
|
||||||
|
|
||||||
if err := req.Write(netConn); err != nil {
|
if err := req.Write(netConn); err != nil {
|
||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if trace != nil && trace.GotFirstResponseByte != nil {
|
||||||
|
if peek, err := conn.br.Peek(1); err == nil && len(peek) == 1 {
|
||||||
|
trace.GotFirstResponseByte()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
resp, err := http.ReadResponse(conn.br, req)
|
resp, err := http.ReadResponse(conn.br, req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
|
@ -328,3 +381,15 @@ func (d *Dialer) Dial(urlStr string, requestHeader http.Header) (*Conn, *http.Re
|
||||||
netConn = nil // to avoid close in defer.
|
netConn = nil // to avoid close in defer.
|
||||||
return conn, resp, nil
|
return conn, resp, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func doHandshake(tlsConn *tls.Conn, cfg *tls.Config) error {
|
||||||
|
if err := tlsConn.Handshake(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if !cfg.InsecureSkipVerify {
|
||||||
|
if err := tlsConn.VerifyHostname(cfg.ServerName); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
104
vendor/github.com/gorilla/websocket/conn.go
generated
vendored
104
vendor/github.com/gorilla/websocket/conn.go
generated
vendored
|
@ -223,6 +223,20 @@ func isValidReceivedCloseCode(code int) bool {
|
||||||
return validReceivedCloseCodes[code] || (code >= 3000 && code <= 4999)
|
return validReceivedCloseCodes[code] || (code >= 3000 && code <= 4999)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// BufferPool represents a pool of buffers. The *sync.Pool type satisfies this
|
||||||
|
// interface. The type of the value stored in a pool is not specified.
|
||||||
|
type BufferPool interface {
|
||||||
|
// Get gets a value from the pool or returns nil if the pool is empty.
|
||||||
|
Get() interface{}
|
||||||
|
// Put adds a value to the pool.
|
||||||
|
Put(interface{})
|
||||||
|
}
|
||||||
|
|
||||||
|
// writePoolData is the type added to the write buffer pool. This wrapper is
|
||||||
|
// used to prevent applications from peeking at and depending on the values
|
||||||
|
// added to the pool.
|
||||||
|
type writePoolData struct{ buf []byte }
|
||||||
|
|
||||||
// The Conn type represents a WebSocket connection.
|
// The Conn type represents a WebSocket connection.
|
||||||
type Conn struct {
|
type Conn struct {
|
||||||
conn net.Conn
|
conn net.Conn
|
||||||
|
@ -232,6 +246,8 @@ type Conn struct {
|
||||||
// Write fields
|
// Write fields
|
||||||
mu chan bool // used as mutex to protect write to conn
|
mu chan bool // used as mutex to protect write to conn
|
||||||
writeBuf []byte // frame is constructed in this buffer.
|
writeBuf []byte // frame is constructed in this buffer.
|
||||||
|
writePool BufferPool
|
||||||
|
writeBufSize int
|
||||||
writeDeadline time.Time
|
writeDeadline time.Time
|
||||||
writer io.WriteCloser // the current writer returned to the application
|
writer io.WriteCloser // the current writer returned to the application
|
||||||
isWriting bool // for best-effort concurrent write detection
|
isWriting bool // for best-effort concurrent write detection
|
||||||
|
@ -263,64 +279,29 @@ type Conn struct {
|
||||||
newDecompressionReader func(io.Reader) io.ReadCloser
|
newDecompressionReader func(io.Reader) io.ReadCloser
|
||||||
}
|
}
|
||||||
|
|
||||||
func newConn(conn net.Conn, isServer bool, readBufferSize, writeBufferSize int) *Conn {
|
func newConn(conn net.Conn, isServer bool, readBufferSize, writeBufferSize int, writeBufferPool BufferPool, br *bufio.Reader, writeBuf []byte) *Conn {
|
||||||
return newConnBRW(conn, isServer, readBufferSize, writeBufferSize, nil)
|
|
||||||
}
|
|
||||||
|
|
||||||
type writeHook struct {
|
|
||||||
p []byte
|
|
||||||
}
|
|
||||||
|
|
||||||
func (wh *writeHook) Write(p []byte) (int, error) {
|
|
||||||
wh.p = p
|
|
||||||
return len(p), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func newConnBRW(conn net.Conn, isServer bool, readBufferSize, writeBufferSize int, brw *bufio.ReadWriter) *Conn {
|
|
||||||
mu := make(chan bool, 1)
|
|
||||||
mu <- true
|
|
||||||
|
|
||||||
var br *bufio.Reader
|
|
||||||
if readBufferSize == 0 && brw != nil && brw.Reader != nil {
|
|
||||||
// Reuse the supplied bufio.Reader if the buffer has a useful size.
|
|
||||||
// This code assumes that peek on a reader returns
|
|
||||||
// bufio.Reader.buf[:0].
|
|
||||||
brw.Reader.Reset(conn)
|
|
||||||
if p, err := brw.Reader.Peek(0); err == nil && cap(p) >= 256 {
|
|
||||||
br = brw.Reader
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if br == nil {
|
if br == nil {
|
||||||
if readBufferSize == 0 {
|
if readBufferSize == 0 {
|
||||||
readBufferSize = defaultReadBufferSize
|
readBufferSize = defaultReadBufferSize
|
||||||
}
|
} else if readBufferSize < maxControlFramePayloadSize {
|
||||||
if readBufferSize < maxControlFramePayloadSize {
|
// must be large enough for control frame
|
||||||
readBufferSize = maxControlFramePayloadSize
|
readBufferSize = maxControlFramePayloadSize
|
||||||
}
|
}
|
||||||
br = bufio.NewReaderSize(conn, readBufferSize)
|
br = bufio.NewReaderSize(conn, readBufferSize)
|
||||||
}
|
}
|
||||||
|
|
||||||
var writeBuf []byte
|
if writeBufferSize <= 0 {
|
||||||
if writeBufferSize == 0 && brw != nil && brw.Writer != nil {
|
writeBufferSize = defaultWriteBufferSize
|
||||||
// Use the bufio.Writer's buffer if the buffer has a useful size. This
|
}
|
||||||
// code assumes that bufio.Writer.buf[:1] is passed to the
|
writeBufferSize += maxFrameHeaderSize
|
||||||
// bufio.Writer's underlying writer.
|
|
||||||
var wh writeHook
|
if writeBuf == nil && writeBufferPool == nil {
|
||||||
brw.Writer.Reset(&wh)
|
writeBuf = make([]byte, writeBufferSize)
|
||||||
brw.Writer.WriteByte(0)
|
|
||||||
brw.Flush()
|
|
||||||
if cap(wh.p) >= maxFrameHeaderSize+256 {
|
|
||||||
writeBuf = wh.p[:cap(wh.p)]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if writeBuf == nil {
|
|
||||||
if writeBufferSize == 0 {
|
|
||||||
writeBufferSize = defaultWriteBufferSize
|
|
||||||
}
|
|
||||||
writeBuf = make([]byte, writeBufferSize+maxFrameHeaderSize)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mu := make(chan bool, 1)
|
||||||
|
mu <- true
|
||||||
c := &Conn{
|
c := &Conn{
|
||||||
isServer: isServer,
|
isServer: isServer,
|
||||||
br: br,
|
br: br,
|
||||||
|
@ -328,6 +309,8 @@ func newConnBRW(conn net.Conn, isServer bool, readBufferSize, writeBufferSize in
|
||||||
mu: mu,
|
mu: mu,
|
||||||
readFinal: true,
|
readFinal: true,
|
||||||
writeBuf: writeBuf,
|
writeBuf: writeBuf,
|
||||||
|
writePool: writeBufferPool,
|
||||||
|
writeBufSize: writeBufferSize,
|
||||||
enableWriteCompression: true,
|
enableWriteCompression: true,
|
||||||
compressionLevel: defaultCompressionLevel,
|
compressionLevel: defaultCompressionLevel,
|
||||||
}
|
}
|
||||||
|
@ -370,6 +353,15 @@ func (c *Conn) writeFatal(err error) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *Conn) read(n int) ([]byte, error) {
|
||||||
|
p, err := c.br.Peek(n)
|
||||||
|
if err == io.EOF {
|
||||||
|
err = errUnexpectedEOF
|
||||||
|
}
|
||||||
|
c.br.Discard(len(p))
|
||||||
|
return p, err
|
||||||
|
}
|
||||||
|
|
||||||
func (c *Conn) write(frameType int, deadline time.Time, buf0, buf1 []byte) error {
|
func (c *Conn) write(frameType int, deadline time.Time, buf0, buf1 []byte) error {
|
||||||
<-c.mu
|
<-c.mu
|
||||||
defer func() { c.mu <- true }()
|
defer func() { c.mu <- true }()
|
||||||
|
@ -475,7 +467,19 @@ func (c *Conn) prepWrite(messageType int) error {
|
||||||
c.writeErrMu.Lock()
|
c.writeErrMu.Lock()
|
||||||
err := c.writeErr
|
err := c.writeErr
|
||||||
c.writeErrMu.Unlock()
|
c.writeErrMu.Unlock()
|
||||||
return err
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if c.writeBuf == nil {
|
||||||
|
wpd, ok := c.writePool.Get().(writePoolData)
|
||||||
|
if ok {
|
||||||
|
c.writeBuf = wpd.buf
|
||||||
|
} else {
|
||||||
|
c.writeBuf = make([]byte, c.writeBufSize)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// NextWriter returns a writer for the next message to send. The writer's Close
|
// NextWriter returns a writer for the next message to send. The writer's Close
|
||||||
|
@ -601,6 +605,10 @@ func (w *messageWriter) flushFrame(final bool, extra []byte) error {
|
||||||
|
|
||||||
if final {
|
if final {
|
||||||
c.writer = nil
|
c.writer = nil
|
||||||
|
if c.writePool != nil {
|
||||||
|
c.writePool.Put(writePoolData{buf: c.writeBuf})
|
||||||
|
c.writeBuf = nil
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
18
vendor/github.com/gorilla/websocket/conn_read.go
generated
vendored
18
vendor/github.com/gorilla/websocket/conn_read.go
generated
vendored
|
@ -1,18 +0,0 @@
|
||||||
// Copyright 2016 The Gorilla WebSocket Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style
|
|
||||||
// license that can be found in the LICENSE file.
|
|
||||||
|
|
||||||
// +build go1.5
|
|
||||||
|
|
||||||
package websocket
|
|
||||||
|
|
||||||
import "io"
|
|
||||||
|
|
||||||
func (c *Conn) read(n int) ([]byte, error) {
|
|
||||||
p, err := c.br.Peek(n)
|
|
||||||
if err == io.EOF {
|
|
||||||
err = errUnexpectedEOF
|
|
||||||
}
|
|
||||||
c.br.Discard(len(p))
|
|
||||||
return p, err
|
|
||||||
}
|
|
21
vendor/github.com/gorilla/websocket/conn_read_legacy.go
generated
vendored
21
vendor/github.com/gorilla/websocket/conn_read_legacy.go
generated
vendored
|
@ -1,21 +0,0 @@
|
||||||
// Copyright 2016 The Gorilla WebSocket Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style
|
|
||||||
// license that can be found in the LICENSE file.
|
|
||||||
|
|
||||||
// +build !go1.5
|
|
||||||
|
|
||||||
package websocket
|
|
||||||
|
|
||||||
import "io"
|
|
||||||
|
|
||||||
func (c *Conn) read(n int) ([]byte, error) {
|
|
||||||
p, err := c.br.Peek(n)
|
|
||||||
if err == io.EOF {
|
|
||||||
err = errUnexpectedEOF
|
|
||||||
}
|
|
||||||
if len(p) > 0 {
|
|
||||||
// advance over the bytes just read
|
|
||||||
io.ReadFull(c.br, p)
|
|
||||||
}
|
|
||||||
return p, err
|
|
||||||
}
|
|
1
vendor/github.com/gorilla/websocket/prepared.go
generated
vendored
1
vendor/github.com/gorilla/websocket/prepared.go
generated
vendored
|
@ -19,7 +19,6 @@ import (
|
||||||
type PreparedMessage struct {
|
type PreparedMessage struct {
|
||||||
messageType int
|
messageType int
|
||||||
data []byte
|
data []byte
|
||||||
err error
|
|
||||||
mu sync.Mutex
|
mu sync.Mutex
|
||||||
frames map[prepareKey]*preparedFrame
|
frames map[prepareKey]*preparedFrame
|
||||||
}
|
}
|
||||||
|
|
81
vendor/github.com/gorilla/websocket/server.go
generated
vendored
81
vendor/github.com/gorilla/websocket/server.go
generated
vendored
|
@ -7,7 +7,7 @@ package websocket
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"errors"
|
"errors"
|
||||||
"net"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"strings"
|
"strings"
|
||||||
|
@ -33,6 +33,17 @@ type Upgrader struct {
|
||||||
// or received.
|
// or received.
|
||||||
ReadBufferSize, WriteBufferSize int
|
ReadBufferSize, WriteBufferSize int
|
||||||
|
|
||||||
|
// WriteBufferPool is a pool of buffers for write operations. If the value
|
||||||
|
// is not set, then write buffers are allocated to the connection for the
|
||||||
|
// lifetime of the connection.
|
||||||
|
//
|
||||||
|
// A pool is most useful when the application has a modest volume of writes
|
||||||
|
// across a large number of connections.
|
||||||
|
//
|
||||||
|
// Applications should use a single pool for each unique value of
|
||||||
|
// WriteBufferSize.
|
||||||
|
WriteBufferPool BufferPool
|
||||||
|
|
||||||
// Subprotocols specifies the server's supported protocols in order of
|
// Subprotocols specifies the server's supported protocols in order of
|
||||||
// preference. If this field is not nil, then the Upgrade method negotiates a
|
// preference. If this field is not nil, then the Upgrade method negotiates a
|
||||||
// subprotocol by selecting the first match in this list with a protocol
|
// subprotocol by selecting the first match in this list with a protocol
|
||||||
|
@ -159,17 +170,12 @@ func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, responseHeade
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
|
||||||
netConn net.Conn
|
|
||||||
err error
|
|
||||||
)
|
|
||||||
|
|
||||||
h, ok := w.(http.Hijacker)
|
h, ok := w.(http.Hijacker)
|
||||||
if !ok {
|
if !ok {
|
||||||
return u.returnError(w, r, http.StatusInternalServerError, "websocket: response does not implement http.Hijacker")
|
return u.returnError(w, r, http.StatusInternalServerError, "websocket: response does not implement http.Hijacker")
|
||||||
}
|
}
|
||||||
var brw *bufio.ReadWriter
|
var brw *bufio.ReadWriter
|
||||||
netConn, brw, err = h.Hijack()
|
netConn, brw, err := h.Hijack()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return u.returnError(w, r, http.StatusInternalServerError, err.Error())
|
return u.returnError(w, r, http.StatusInternalServerError, err.Error())
|
||||||
}
|
}
|
||||||
|
@ -179,7 +185,21 @@ func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, responseHeade
|
||||||
return nil, errors.New("websocket: client sent data before handshake is complete")
|
return nil, errors.New("websocket: client sent data before handshake is complete")
|
||||||
}
|
}
|
||||||
|
|
||||||
c := newConnBRW(netConn, true, u.ReadBufferSize, u.WriteBufferSize, brw)
|
var br *bufio.Reader
|
||||||
|
if u.ReadBufferSize == 0 && bufioReaderSize(netConn, brw.Reader) > 256 {
|
||||||
|
// Reuse hijacked buffered reader as connection reader.
|
||||||
|
br = brw.Reader
|
||||||
|
}
|
||||||
|
|
||||||
|
buf := bufioWriterBuffer(netConn, brw.Writer)
|
||||||
|
|
||||||
|
var writeBuf []byte
|
||||||
|
if u.WriteBufferPool == nil && u.WriteBufferSize == 0 && len(buf) >= maxFrameHeaderSize+256 {
|
||||||
|
// Reuse hijacked write buffer as connection buffer.
|
||||||
|
writeBuf = buf
|
||||||
|
}
|
||||||
|
|
||||||
|
c := newConn(netConn, true, u.ReadBufferSize, u.WriteBufferSize, u.WriteBufferPool, br, writeBuf)
|
||||||
c.subprotocol = subprotocol
|
c.subprotocol = subprotocol
|
||||||
|
|
||||||
if compress {
|
if compress {
|
||||||
|
@ -187,7 +207,13 @@ func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, responseHeade
|
||||||
c.newDecompressionReader = decompressNoContextTakeover
|
c.newDecompressionReader = decompressNoContextTakeover
|
||||||
}
|
}
|
||||||
|
|
||||||
p := c.writeBuf[:0]
|
// Use larger of hijacked buffer and connection write buffer for header.
|
||||||
|
p := buf
|
||||||
|
if len(c.writeBuf) > len(p) {
|
||||||
|
p = c.writeBuf
|
||||||
|
}
|
||||||
|
p = p[:0]
|
||||||
|
|
||||||
p = append(p, "HTTP/1.1 101 Switching Protocols\r\nUpgrade: websocket\r\nConnection: Upgrade\r\nSec-WebSocket-Accept: "...)
|
p = append(p, "HTTP/1.1 101 Switching Protocols\r\nUpgrade: websocket\r\nConnection: Upgrade\r\nSec-WebSocket-Accept: "...)
|
||||||
p = append(p, computeAcceptKey(challengeKey)...)
|
p = append(p, computeAcceptKey(challengeKey)...)
|
||||||
p = append(p, "\r\n"...)
|
p = append(p, "\r\n"...)
|
||||||
|
@ -298,3 +324,40 @@ func IsWebSocketUpgrade(r *http.Request) bool {
|
||||||
return tokenListContainsValue(r.Header, "Connection", "upgrade") &&
|
return tokenListContainsValue(r.Header, "Connection", "upgrade") &&
|
||||||
tokenListContainsValue(r.Header, "Upgrade", "websocket")
|
tokenListContainsValue(r.Header, "Upgrade", "websocket")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// bufioReaderSize size returns the size of a bufio.Reader.
|
||||||
|
func bufioReaderSize(originalReader io.Reader, br *bufio.Reader) int {
|
||||||
|
// This code assumes that peek on a reset reader returns
|
||||||
|
// bufio.Reader.buf[:0].
|
||||||
|
// TODO: Use bufio.Reader.Size() after Go 1.10
|
||||||
|
br.Reset(originalReader)
|
||||||
|
if p, err := br.Peek(0); err == nil {
|
||||||
|
return cap(p)
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
// writeHook is an io.Writer that records the last slice passed to it vio
|
||||||
|
// io.Writer.Write.
|
||||||
|
type writeHook struct {
|
||||||
|
p []byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func (wh *writeHook) Write(p []byte) (int, error) {
|
||||||
|
wh.p = p
|
||||||
|
return len(p), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// bufioWriterBuffer grabs the buffer from a bufio.Writer.
|
||||||
|
func bufioWriterBuffer(originalWriter io.Writer, bw *bufio.Writer) []byte {
|
||||||
|
// This code assumes that bufio.Writer.buf[:1] is passed to the
|
||||||
|
// bufio.Writer's underlying writer.
|
||||||
|
var wh writeHook
|
||||||
|
bw.Reset(&wh)
|
||||||
|
bw.WriteByte(0)
|
||||||
|
bw.Flush()
|
||||||
|
|
||||||
|
bw.Reset(originalWriter)
|
||||||
|
|
||||||
|
return wh.p[:cap(wh.p)]
|
||||||
|
}
|
||||||
|
|
19
vendor/github.com/gorilla/websocket/trace.go
generated
vendored
Normal file
19
vendor/github.com/gorilla/websocket/trace.go
generated
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
// +build go1.8
|
||||||
|
|
||||||
|
package websocket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/tls"
|
||||||
|
"net/http/httptrace"
|
||||||
|
)
|
||||||
|
|
||||||
|
func doHandshakeWithTrace(trace *httptrace.ClientTrace, tlsConn *tls.Conn, cfg *tls.Config) error {
|
||||||
|
if trace.TLSHandshakeStart != nil {
|
||||||
|
trace.TLSHandshakeStart()
|
||||||
|
}
|
||||||
|
err := doHandshake(tlsConn, cfg)
|
||||||
|
if trace.TLSHandshakeDone != nil {
|
||||||
|
trace.TLSHandshakeDone(tlsConn.ConnectionState(), err)
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
}
|
12
vendor/github.com/gorilla/websocket/trace_17.go
generated
vendored
Normal file
12
vendor/github.com/gorilla/websocket/trace_17.go
generated
vendored
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
// +build !go1.8
|
||||||
|
|
||||||
|
package websocket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/tls"
|
||||||
|
"net/http/httptrace"
|
||||||
|
)
|
||||||
|
|
||||||
|
func doHandshakeWithTrace(trace *httptrace.ClientTrace, tlsConn *tls.Conn, cfg *tls.Config) error {
|
||||||
|
return doHandshake(tlsConn, cfg)
|
||||||
|
}
|
2
vendor/github.com/gorilla/websocket/util.go
generated
vendored
2
vendor/github.com/gorilla/websocket/util.go
generated
vendored
|
@ -178,7 +178,7 @@ headers:
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
// parseExtensiosn parses WebSocket extensions from a header.
|
// parseExtensions parses WebSocket extensions from a header.
|
||||||
func parseExtensions(header http.Header) []map[string]string {
|
func parseExtensions(header http.Header) []map[string]string {
|
||||||
// From RFC 6455:
|
// From RFC 6455:
|
||||||
//
|
//
|
||||||
|
|
19
vendor/golang.org/x/net/html/parse.go
generated
vendored
19
vendor/golang.org/x/net/html/parse.go
generated
vendored
|
@ -984,6 +984,14 @@ func inBodyIM(p *parser) bool {
|
||||||
p.acknowledgeSelfClosingTag()
|
p.acknowledgeSelfClosingTag()
|
||||||
p.popUntil(buttonScope, a.P)
|
p.popUntil(buttonScope, a.P)
|
||||||
p.parseImpliedToken(StartTagToken, a.Form, a.Form.String())
|
p.parseImpliedToken(StartTagToken, a.Form, a.Form.String())
|
||||||
|
if p.form == nil {
|
||||||
|
// NOTE: The 'isindex' element has been removed,
|
||||||
|
// and the 'template' element has not been designed to be
|
||||||
|
// collaborative with the index element.
|
||||||
|
//
|
||||||
|
// Ignore the token.
|
||||||
|
return true
|
||||||
|
}
|
||||||
if action != "" {
|
if action != "" {
|
||||||
p.form.Attr = []Attribute{{Key: "action", Val: action}}
|
p.form.Attr = []Attribute{{Key: "action", Val: action}}
|
||||||
}
|
}
|
||||||
|
@ -2209,6 +2217,15 @@ func (p *parser) parse() error {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse returns the parse tree for the HTML from the given Reader.
|
// Parse returns the parse tree for the HTML from the given Reader.
|
||||||
|
//
|
||||||
|
// It implements the HTML5 parsing algorithm
|
||||||
|
// (https://html.spec.whatwg.org/multipage/syntax.html#tree-construction),
|
||||||
|
// which is very complicated. The resultant tree can contain implicitly created
|
||||||
|
// nodes that have no explicit <tag> listed in r's data, and nodes' parents can
|
||||||
|
// differ from the nesting implied by a naive processing of start and end
|
||||||
|
// <tag>s. Conversely, explicit <tag>s in r's data can be silently dropped,
|
||||||
|
// with no corresponding node in the resulting tree.
|
||||||
|
//
|
||||||
// The input is assumed to be UTF-8 encoded.
|
// The input is assumed to be UTF-8 encoded.
|
||||||
func Parse(r io.Reader) (*Node, error) {
|
func Parse(r io.Reader) (*Node, error) {
|
||||||
p := &parser{
|
p := &parser{
|
||||||
|
@ -2230,6 +2247,8 @@ func Parse(r io.Reader) (*Node, error) {
|
||||||
// ParseFragment parses a fragment of HTML and returns the nodes that were
|
// ParseFragment parses a fragment of HTML and returns the nodes that were
|
||||||
// found. If the fragment is the InnerHTML for an existing element, pass that
|
// found. If the fragment is the InnerHTML for an existing element, pass that
|
||||||
// element in context.
|
// element in context.
|
||||||
|
//
|
||||||
|
// It has the same intricacies as Parse.
|
||||||
func ParseFragment(r io.Reader, context *Node) ([]*Node, error) {
|
func ParseFragment(r io.Reader, context *Node) ([]*Node, error) {
|
||||||
contextTag := ""
|
contextTag := ""
|
||||||
if context != nil {
|
if context != nil {
|
||||||
|
|
12
vendor/golang.org/x/sys/unix/dev_aix_ppc.go
generated
vendored
12
vendor/golang.org/x/sys/unix/dev_aix_ppc.go
generated
vendored
|
@ -6,17 +6,7 @@
|
||||||
// +build ppc
|
// +build ppc
|
||||||
|
|
||||||
// Functions to access/create device major and minor numbers matching the
|
// Functions to access/create device major and minor numbers matching the
|
||||||
// encoding used by the Linux kernel and glibc.
|
// encoding used by AIX.
|
||||||
//
|
|
||||||
// The information below is extracted and adapted from bits/sysmacros.h in the
|
|
||||||
// glibc sources:
|
|
||||||
//
|
|
||||||
// dev_t in glibc is 64-bit, with 32-bit major and minor numbers. glibc's
|
|
||||||
// default encoding is MMMM Mmmm mmmM MMmm, where M is a hex digit of the major
|
|
||||||
// number and m is a hex digit of the minor number. This is backward compatible
|
|
||||||
// with legacy systems where dev_t is 16 bits wide, encoded as MMmm. It is also
|
|
||||||
// backward compatible with the Linux kernel, which for some architectures uses
|
|
||||||
// 32-bit dev_t, encoded as mmmM MMmm.
|
|
||||||
|
|
||||||
package unix
|
package unix
|
||||||
|
|
||||||
|
|
12
vendor/golang.org/x/sys/unix/dev_aix_ppc64.go
generated
vendored
12
vendor/golang.org/x/sys/unix/dev_aix_ppc64.go
generated
vendored
|
@ -6,17 +6,7 @@
|
||||||
// +build ppc64
|
// +build ppc64
|
||||||
|
|
||||||
// Functions to access/create device major and minor numbers matching the
|
// Functions to access/create device major and minor numbers matching the
|
||||||
// encoding used by the Linux kernel and glibc.
|
// encoding used AIX.
|
||||||
//
|
|
||||||
// The information below is extracted and adapted from bits/sysmacros.h in the
|
|
||||||
// glibc sources:
|
|
||||||
//
|
|
||||||
// dev_t in glibc is 64-bit, with 32-bit major and minor numbers. glibc's
|
|
||||||
// default encoding is MMMM Mmmm mmmM MMmm, where M is a hex digit of the major
|
|
||||||
// number and m is a hex digit of the minor number. This is backward compatible
|
|
||||||
// with legacy systems where dev_t is 16 bits wide, encoded as MMmm. It is also
|
|
||||||
// backward compatible with the Linux kernel, which for some architectures uses
|
|
||||||
// 32-bit dev_t, encoded as mmmM MMmm.
|
|
||||||
|
|
||||||
package unix
|
package unix
|
||||||
|
|
||||||
|
|
2
vendor/golang.org/x/sys/unix/ioctl.go
generated
vendored
2
vendor/golang.org/x/sys/unix/ioctl.go
generated
vendored
|
@ -2,7 +2,7 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
|
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
|
||||||
|
|
||||||
package unix
|
package unix
|
||||||
|
|
||||||
|
|
17
vendor/golang.org/x/sys/unix/mkerrors.sh
generated
vendored
17
vendor/golang.org/x/sys/unix/mkerrors.sh
generated
vendored
|
@ -46,6 +46,7 @@ includes_AIX='
|
||||||
#include <sys/stropts.h>
|
#include <sys/stropts.h>
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
#include <sys/poll.h>
|
#include <sys/poll.h>
|
||||||
|
#include <sys/termio.h>
|
||||||
#include <termios.h>
|
#include <termios.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
|
||||||
|
@ -193,6 +194,7 @@ struct ltchars {
|
||||||
#include <linux/fs.h>
|
#include <linux/fs.h>
|
||||||
#include <linux/keyctl.h>
|
#include <linux/keyctl.h>
|
||||||
#include <linux/magic.h>
|
#include <linux/magic.h>
|
||||||
|
#include <linux/memfd.h>
|
||||||
#include <linux/netfilter/nfnetlink.h>
|
#include <linux/netfilter/nfnetlink.h>
|
||||||
#include <linux/netlink.h>
|
#include <linux/netlink.h>
|
||||||
#include <linux/net_namespace.h>
|
#include <linux/net_namespace.h>
|
||||||
|
@ -214,6 +216,7 @@ struct ltchars {
|
||||||
#include <linux/watchdog.h>
|
#include <linux/watchdog.h>
|
||||||
#include <linux/hdreg.h>
|
#include <linux/hdreg.h>
|
||||||
#include <linux/rtc.h>
|
#include <linux/rtc.h>
|
||||||
|
#include <linux/if_xdp.h>
|
||||||
#include <mtd/ubi-user.h>
|
#include <mtd/ubi-user.h>
|
||||||
#include <net/route.h>
|
#include <net/route.h>
|
||||||
#include <asm/termbits.h>
|
#include <asm/termbits.h>
|
||||||
|
@ -244,6 +247,16 @@ struct ltchars {
|
||||||
#define FS_KEY_DESC_PREFIX "fscrypt:"
|
#define FS_KEY_DESC_PREFIX "fscrypt:"
|
||||||
#define FS_KEY_DESC_PREFIX_SIZE 8
|
#define FS_KEY_DESC_PREFIX_SIZE 8
|
||||||
#define FS_MAX_KEY_SIZE 64
|
#define FS_MAX_KEY_SIZE 64
|
||||||
|
|
||||||
|
// XDP socket constants do not appear to be picked up otherwise.
|
||||||
|
// Copied from samples/bpf/xdpsock_user.c.
|
||||||
|
#ifndef SOL_XDP
|
||||||
|
#define SOL_XDP 283
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef AF_XDP
|
||||||
|
#define AF_XDP 44
|
||||||
|
#endif
|
||||||
'
|
'
|
||||||
|
|
||||||
includes_NetBSD='
|
includes_NetBSD='
|
||||||
|
@ -413,7 +426,7 @@ ccflags="$@"
|
||||||
$2 ~ /^TC[IO](ON|OFF)$/ ||
|
$2 ~ /^TC[IO](ON|OFF)$/ ||
|
||||||
$2 ~ /^IN_/ ||
|
$2 ~ /^IN_/ ||
|
||||||
$2 ~ /^LOCK_(SH|EX|NB|UN)$/ ||
|
$2 ~ /^LOCK_(SH|EX|NB|UN)$/ ||
|
||||||
$2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|ICMP6|TCP|EVFILT|NOTE|EV|SHUT|PROT|MAP|T?PACKET|MSG|SCM|MCL|DT|MADV|PR)_/ ||
|
$2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|ICMP6|TCP|EVFILT|NOTE|EV|SHUT|PROT|MAP|MFD|T?PACKET|MSG|SCM|MCL|DT|MADV|PR)_/ ||
|
||||||
$2 ~ /^TP_STATUS_/ ||
|
$2 ~ /^TP_STATUS_/ ||
|
||||||
$2 ~ /^FALLOC_/ ||
|
$2 ~ /^FALLOC_/ ||
|
||||||
$2 == "ICMPV6_FILTER" ||
|
$2 == "ICMPV6_FILTER" ||
|
||||||
|
@ -456,6 +469,7 @@ ccflags="$@"
|
||||||
$2 ~ /^PERF_EVENT_IOC_/ ||
|
$2 ~ /^PERF_EVENT_IOC_/ ||
|
||||||
$2 ~ /^SECCOMP_MODE_/ ||
|
$2 ~ /^SECCOMP_MODE_/ ||
|
||||||
$2 ~ /^SPLICE_/ ||
|
$2 ~ /^SPLICE_/ ||
|
||||||
|
$2 ~ /^SYNC_FILE_RANGE_/ ||
|
||||||
$2 !~ /^AUDIT_RECORD_MAGIC/ &&
|
$2 !~ /^AUDIT_RECORD_MAGIC/ &&
|
||||||
$2 !~ /IOC_MAGIC/ &&
|
$2 !~ /IOC_MAGIC/ &&
|
||||||
$2 ~ /^[A-Z][A-Z0-9_]+_MAGIC2?$/ ||
|
$2 ~ /^[A-Z][A-Z0-9_]+_MAGIC2?$/ ||
|
||||||
|
@ -473,6 +487,7 @@ ccflags="$@"
|
||||||
$2 ~ /^FSOPT_/ ||
|
$2 ~ /^FSOPT_/ ||
|
||||||
$2 ~ /^WDIOC_/ ||
|
$2 ~ /^WDIOC_/ ||
|
||||||
$2 ~ /^NFN/ ||
|
$2 ~ /^NFN/ ||
|
||||||
|
$2 ~ /^XDP_/ ||
|
||||||
$2 ~ /^(HDIO|WIN|SMART)_/ ||
|
$2 ~ /^(HDIO|WIN|SMART)_/ ||
|
||||||
$2 !~ "WMESGLEN" &&
|
$2 !~ "WMESGLEN" &&
|
||||||
$2 ~ /^W[A-Z0-9]+$/ ||
|
$2 ~ /^W[A-Z0-9]+$/ ||
|
||||||
|
|
6
vendor/golang.org/x/sys/unix/syscall_aix.go
generated
vendored
6
vendor/golang.org/x/sys/unix/syscall_aix.go
generated
vendored
|
@ -345,11 +345,11 @@ func IoctlSetInt(fd int, req uint, value int) error {
|
||||||
return ioctl(fd, req, uintptr(value))
|
return ioctl(fd, req, uintptr(value))
|
||||||
}
|
}
|
||||||
|
|
||||||
func IoctlSetWinsize(fd int, req uint, value *Winsize) error {
|
func ioctlSetWinsize(fd int, req uint, value *Winsize) error {
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
||||||
}
|
}
|
||||||
|
|
||||||
func IoctlSetTermios(fd int, req uint, value *Termios) error {
|
func ioctlSetTermios(fd int, req uint, value *Termios) error {
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -419,8 +419,10 @@ func Flock(fd int, how int) (err error) {
|
||||||
//sysnb Getsid(pid int) (sid int, err error)
|
//sysnb Getsid(pid int) (sid int, err error)
|
||||||
//sysnb Kill(pid int, sig syscall.Signal) (err error)
|
//sysnb Kill(pid int, sig syscall.Signal) (err error)
|
||||||
//sys Klogctl(typ int, buf []byte) (n int, err error) = syslog
|
//sys Klogctl(typ int, buf []byte) (n int, err error) = syslog
|
||||||
|
//sys Mkdir(dirfd int, path string, mode uint32) (err error)
|
||||||
//sys Mkdirat(dirfd int, path string, mode uint32) (err error)
|
//sys Mkdirat(dirfd int, path string, mode uint32) (err error)
|
||||||
//sys Mkfifo(path string, mode uint32) (err error)
|
//sys Mkfifo(path string, mode uint32) (err error)
|
||||||
|
//sys Mknod(path string, mode uint32, dev int) (err error)
|
||||||
//sys Mknodat(dirfd int, path string, mode uint32, dev int) (err error)
|
//sys Mknodat(dirfd int, path string, mode uint32, dev int) (err error)
|
||||||
//sys Nanosleep(time *Timespec, leftover *Timespec) (err error)
|
//sys Nanosleep(time *Timespec, leftover *Timespec) (err error)
|
||||||
//sys Open(path string, mode int, perm uint32) (fd int, err error) = open64
|
//sys Open(path string, mode int, perm uint32) (fd int, err error) = open64
|
||||||
|
|
28
vendor/golang.org/x/sys/unix/syscall_linux.go
generated
vendored
28
vendor/golang.org/x/sys/unix/syscall_linux.go
generated
vendored
|
@ -692,6 +692,24 @@ func (sa *SockaddrVM) sockaddr() (unsafe.Pointer, _Socklen, error) {
|
||||||
return unsafe.Pointer(&sa.raw), SizeofSockaddrVM, nil
|
return unsafe.Pointer(&sa.raw), SizeofSockaddrVM, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type SockaddrXDP struct {
|
||||||
|
Flags uint16
|
||||||
|
Ifindex uint32
|
||||||
|
QueueID uint32
|
||||||
|
SharedUmemFD uint32
|
||||||
|
raw RawSockaddrXDP
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sa *SockaddrXDP) sockaddr() (unsafe.Pointer, _Socklen, error) {
|
||||||
|
sa.raw.Family = AF_XDP
|
||||||
|
sa.raw.Flags = sa.Flags
|
||||||
|
sa.raw.Ifindex = sa.Ifindex
|
||||||
|
sa.raw.Queue_id = sa.QueueID
|
||||||
|
sa.raw.Shared_umem_fd = sa.SharedUmemFD
|
||||||
|
|
||||||
|
return unsafe.Pointer(&sa.raw), SizeofSockaddrXDP, nil
|
||||||
|
}
|
||||||
|
|
||||||
func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {
|
func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {
|
||||||
switch rsa.Addr.Family {
|
switch rsa.Addr.Family {
|
||||||
case AF_NETLINK:
|
case AF_NETLINK:
|
||||||
|
@ -793,6 +811,15 @@ func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {
|
||||||
}
|
}
|
||||||
return sa, nil
|
return sa, nil
|
||||||
}
|
}
|
||||||
|
case AF_XDP:
|
||||||
|
pp := (*RawSockaddrXDP)(unsafe.Pointer(rsa))
|
||||||
|
sa := &SockaddrXDP{
|
||||||
|
Flags: pp.Flags,
|
||||||
|
Ifindex: pp.Ifindex,
|
||||||
|
QueueID: pp.Queue_id,
|
||||||
|
SharedUmemFD: pp.Shared_umem_fd,
|
||||||
|
}
|
||||||
|
return sa, nil
|
||||||
}
|
}
|
||||||
return nil, EAFNOSUPPORT
|
return nil, EAFNOSUPPORT
|
||||||
}
|
}
|
||||||
|
@ -1320,6 +1347,7 @@ func Getpgrp() (pid int) {
|
||||||
//sys Llistxattr(path string, dest []byte) (sz int, err error)
|
//sys Llistxattr(path string, dest []byte) (sz int, err error)
|
||||||
//sys Lremovexattr(path string, attr string) (err error)
|
//sys Lremovexattr(path string, attr string) (err error)
|
||||||
//sys Lsetxattr(path string, attr string, data []byte, flags int) (err error)
|
//sys Lsetxattr(path string, attr string, data []byte, flags int) (err error)
|
||||||
|
//sys MemfdCreate(name string, flags int) (fd int, err error)
|
||||||
//sys Mkdirat(dirfd int, path string, mode uint32) (err error)
|
//sys Mkdirat(dirfd int, path string, mode uint32) (err error)
|
||||||
//sys Mknodat(dirfd int, path string, mode uint32, dev int) (err error)
|
//sys Mknodat(dirfd int, path string, mode uint32, dev int) (err error)
|
||||||
//sys Nanosleep(time *Timespec, leftover *Timespec) (err error)
|
//sys Nanosleep(time *Timespec, leftover *Timespec) (err error)
|
||||||
|
|
9
vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go
generated
vendored
9
vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go
generated
vendored
|
@ -44,7 +44,6 @@ package unix
|
||||||
//sys Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)
|
//sys Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)
|
||||||
//sys Stat(path string, stat *Stat_t) (err error)
|
//sys Stat(path string, stat *Stat_t) (err error)
|
||||||
//sys Statfs(path string, buf *Statfs_t) (err error)
|
//sys Statfs(path string, buf *Statfs_t) (err error)
|
||||||
//sys SyncFileRange(fd int, off int64, n int64, flags int) (err error) = SYS_SYNC_FILE_RANGE2
|
|
||||||
//sys Truncate(path string, length int64) (err error)
|
//sys Truncate(path string, length int64) (err error)
|
||||||
//sys Ustat(dev int, ubuf *Ustat_t) (err error)
|
//sys Ustat(dev int, ubuf *Ustat_t) (err error)
|
||||||
//sys accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)
|
//sys accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)
|
||||||
|
@ -129,3 +128,11 @@ func Poll(fds []PollFd, timeout int) (n int, err error) {
|
||||||
}
|
}
|
||||||
return poll(&fds[0], len(fds), timeout)
|
return poll(&fds[0], len(fds), timeout)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//sys syncFileRange2(fd int, flags int, off int64, n int64) (err error) = SYS_SYNC_FILE_RANGE2
|
||||||
|
|
||||||
|
func SyncFileRange(fd int, off int64, n int64, flags int) error {
|
||||||
|
// The sync_file_range and sync_file_range2 syscalls differ only in the
|
||||||
|
// order of their arguments.
|
||||||
|
return syncFileRange2(fd, flags, off, n)
|
||||||
|
}
|
||||||
|
|
212
vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go
generated
vendored
Normal file
212
vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go
generated
vendored
Normal file
|
@ -0,0 +1,212 @@
|
||||||
|
// Copyright 2018 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
// +build riscv64,linux
|
||||||
|
|
||||||
|
package unix
|
||||||
|
|
||||||
|
import "unsafe"
|
||||||
|
|
||||||
|
func EpollCreate(size int) (fd int, err error) {
|
||||||
|
if size <= 0 {
|
||||||
|
return -1, EINVAL
|
||||||
|
}
|
||||||
|
return EpollCreate1(0)
|
||||||
|
}
|
||||||
|
|
||||||
|
//sys EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) = SYS_EPOLL_PWAIT
|
||||||
|
//sys Fadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_FADVISE64
|
||||||
|
//sys Fchown(fd int, uid int, gid int) (err error)
|
||||||
|
//sys Fstat(fd int, stat *Stat_t) (err error)
|
||||||
|
//sys Fstatat(fd int, path string, stat *Stat_t, flags int) (err error)
|
||||||
|
//sys Fstatfs(fd int, buf *Statfs_t) (err error)
|
||||||
|
//sys Ftruncate(fd int, length int64) (err error)
|
||||||
|
//sysnb Getegid() (egid int)
|
||||||
|
//sysnb Geteuid() (euid int)
|
||||||
|
//sysnb Getgid() (gid int)
|
||||||
|
//sysnb Getrlimit(resource int, rlim *Rlimit) (err error)
|
||||||
|
//sysnb Getuid() (uid int)
|
||||||
|
//sys Listen(s int, n int) (err error)
|
||||||
|
//sys Pread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64
|
||||||
|
//sys Pwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64
|
||||||
|
//sys Seek(fd int, offset int64, whence int) (off int64, err error) = SYS_LSEEK
|
||||||
|
|
||||||
|
func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {
|
||||||
|
var ts *Timespec
|
||||||
|
if timeout != nil {
|
||||||
|
ts = &Timespec{Sec: timeout.Sec, Nsec: timeout.Usec * 1000}
|
||||||
|
}
|
||||||
|
return Pselect(nfd, r, w, e, ts, nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
//sys sendfile(outfd int, infd int, offset *int64, count int) (written int, err error)
|
||||||
|
//sys Setfsgid(gid int) (err error)
|
||||||
|
//sys Setfsuid(uid int) (err error)
|
||||||
|
//sysnb Setregid(rgid int, egid int) (err error)
|
||||||
|
//sysnb Setresgid(rgid int, egid int, sgid int) (err error)
|
||||||
|
//sysnb Setresuid(ruid int, euid int, suid int) (err error)
|
||||||
|
//sysnb Setrlimit(resource int, rlim *Rlimit) (err error)
|
||||||
|
//sysnb Setreuid(ruid int, euid int) (err error)
|
||||||
|
//sys Shutdown(fd int, how int) (err error)
|
||||||
|
//sys Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)
|
||||||
|
|
||||||
|
func Stat(path string, stat *Stat_t) (err error) {
|
||||||
|
return Fstatat(AT_FDCWD, path, stat, 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Lchown(path string, uid int, gid int) (err error) {
|
||||||
|
return Fchownat(AT_FDCWD, path, uid, gid, AT_SYMLINK_NOFOLLOW)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Lstat(path string, stat *Stat_t) (err error) {
|
||||||
|
return Fstatat(AT_FDCWD, path, stat, AT_SYMLINK_NOFOLLOW)
|
||||||
|
}
|
||||||
|
|
||||||
|
//sys Statfs(path string, buf *Statfs_t) (err error)
|
||||||
|
//sys SyncFileRange(fd int, off int64, n int64, flags int) (err error)
|
||||||
|
//sys Truncate(path string, length int64) (err error)
|
||||||
|
|
||||||
|
func Ustat(dev int, ubuf *Ustat_t) (err error) {
|
||||||
|
return ENOSYS
|
||||||
|
}
|
||||||
|
|
||||||
|
//sys accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)
|
||||||
|
//sys accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error)
|
||||||
|
//sys bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)
|
||||||
|
//sys connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)
|
||||||
|
//sysnb getgroups(n int, list *_Gid_t) (nn int, err error)
|
||||||
|
//sysnb setgroups(n int, list *_Gid_t) (err error)
|
||||||
|
//sys getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error)
|
||||||
|
//sys setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error)
|
||||||
|
//sysnb socket(domain int, typ int, proto int) (fd int, err error)
|
||||||
|
//sysnb socketpair(domain int, typ int, proto int, fd *[2]int32) (err error)
|
||||||
|
//sysnb getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)
|
||||||
|
//sysnb getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)
|
||||||
|
//sys recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)
|
||||||
|
//sys sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)
|
||||||
|
//sys recvmsg(s int, msg *Msghdr, flags int) (n int, err error)
|
||||||
|
//sys sendmsg(s int, msg *Msghdr, flags int) (n int, err error)
|
||||||
|
//sys mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error)
|
||||||
|
|
||||||
|
//sysnb Gettimeofday(tv *Timeval) (err error)
|
||||||
|
|
||||||
|
func setTimespec(sec, nsec int64) Timespec {
|
||||||
|
return Timespec{Sec: sec, Nsec: nsec}
|
||||||
|
}
|
||||||
|
|
||||||
|
func setTimeval(sec, usec int64) Timeval {
|
||||||
|
return Timeval{Sec: sec, Usec: usec}
|
||||||
|
}
|
||||||
|
|
||||||
|
func futimesat(dirfd int, path string, tv *[2]Timeval) (err error) {
|
||||||
|
if tv == nil {
|
||||||
|
return utimensat(dirfd, path, nil, 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
ts := []Timespec{
|
||||||
|
NsecToTimespec(TimevalToNsec(tv[0])),
|
||||||
|
NsecToTimespec(TimevalToNsec(tv[1])),
|
||||||
|
}
|
||||||
|
return utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Time(t *Time_t) (Time_t, error) {
|
||||||
|
var tv Timeval
|
||||||
|
err := Gettimeofday(&tv)
|
||||||
|
if err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
if t != nil {
|
||||||
|
*t = Time_t(tv.Sec)
|
||||||
|
}
|
||||||
|
return Time_t(tv.Sec), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func Utime(path string, buf *Utimbuf) error {
|
||||||
|
tv := []Timeval{
|
||||||
|
{Sec: buf.Actime},
|
||||||
|
{Sec: buf.Modtime},
|
||||||
|
}
|
||||||
|
return Utimes(path, tv)
|
||||||
|
}
|
||||||
|
|
||||||
|
func utimes(path string, tv *[2]Timeval) (err error) {
|
||||||
|
if tv == nil {
|
||||||
|
return utimensat(AT_FDCWD, path, nil, 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
ts := []Timespec{
|
||||||
|
NsecToTimespec(TimevalToNsec(tv[0])),
|
||||||
|
NsecToTimespec(TimevalToNsec(tv[1])),
|
||||||
|
}
|
||||||
|
return utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Pipe(p []int) (err error) {
|
||||||
|
if len(p) != 2 {
|
||||||
|
return EINVAL
|
||||||
|
}
|
||||||
|
var pp [2]_C_int
|
||||||
|
err = pipe2(&pp, 0)
|
||||||
|
p[0] = int(pp[0])
|
||||||
|
p[1] = int(pp[1])
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
//sysnb pipe2(p *[2]_C_int, flags int) (err error)
|
||||||
|
|
||||||
|
func Pipe2(p []int, flags int) (err error) {
|
||||||
|
if len(p) != 2 {
|
||||||
|
return EINVAL
|
||||||
|
}
|
||||||
|
var pp [2]_C_int
|
||||||
|
err = pipe2(&pp, flags)
|
||||||
|
p[0] = int(pp[0])
|
||||||
|
p[1] = int(pp[1])
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *PtraceRegs) PC() uint64 { return r.Pc }
|
||||||
|
|
||||||
|
func (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc }
|
||||||
|
|
||||||
|
func (iov *Iovec) SetLen(length int) {
|
||||||
|
iov.Len = uint64(length)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (msghdr *Msghdr) SetControllen(length int) {
|
||||||
|
msghdr.Controllen = uint64(length)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (cmsg *Cmsghdr) SetLen(length int) {
|
||||||
|
cmsg.Len = uint64(length)
|
||||||
|
}
|
||||||
|
|
||||||
|
func InotifyInit() (fd int, err error) {
|
||||||
|
return InotifyInit1(0)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Dup2(oldfd int, newfd int) (err error) {
|
||||||
|
return Dup3(oldfd, newfd, 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Pause() (err error) {
|
||||||
|
_, _, e1 := Syscall6(SYS_PPOLL, 0, 0, 0, 0, 0, 0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func Poll(fds []PollFd, timeout int) (n int, err error) {
|
||||||
|
var ts *Timespec
|
||||||
|
if timeout >= 0 {
|
||||||
|
ts = new(Timespec)
|
||||||
|
*ts = NsecToTimespec(int64(timeout) * 1e6)
|
||||||
|
}
|
||||||
|
if len(fds) == 0 {
|
||||||
|
return ppoll(nil, 0, ts, nil)
|
||||||
|
}
|
||||||
|
return ppoll(&fds[0], len(fds), ts, nil)
|
||||||
|
}
|
9
vendor/golang.org/x/sys/unix/types_aix.go
generated
vendored
9
vendor/golang.org/x/sys/unix/types_aix.go
generated
vendored
|
@ -22,6 +22,11 @@ package unix
|
||||||
#include <utime.h>
|
#include <utime.h>
|
||||||
#include <sys/utsname.h>
|
#include <sys/utsname.h>
|
||||||
#include <sys/poll.h>
|
#include <sys/poll.h>
|
||||||
|
#include <sys/resource.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <sys/statfs.h>
|
||||||
|
#include <sys/termio.h>
|
||||||
|
#include <sys/ioctl.h>
|
||||||
|
|
||||||
#include <termios.h>
|
#include <termios.h>
|
||||||
|
|
||||||
|
@ -33,7 +38,6 @@ package unix
|
||||||
|
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <gcrypt.h>
|
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
sizeofPtr = sizeof(void*),
|
sizeofPtr = sizeof(void*),
|
||||||
|
@ -224,6 +228,9 @@ type Flock_t C.struct_flock64
|
||||||
|
|
||||||
// Statfs
|
// Statfs
|
||||||
|
|
||||||
|
type Fsid_t C.struct_fsid_t
|
||||||
|
type Fsid64_t C.struct_fsid64_t
|
||||||
|
|
||||||
type Statfs_t C.struct_statfs
|
type Statfs_t C.struct_statfs
|
||||||
|
|
||||||
const RNDGETENTCNT = 0x80045200
|
const RNDGETENTCNT = 0x80045200
|
||||||
|
|
12
vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go
generated
vendored
12
vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go
generated
vendored
|
@ -867,6 +867,9 @@ const (
|
||||||
TAB2 = 0x800
|
TAB2 = 0x800
|
||||||
TAB3 = 0xc00
|
TAB3 = 0xc00
|
||||||
TABDLY = 0xc00
|
TABDLY = 0xc00
|
||||||
|
TCFLSH = 0x540c
|
||||||
|
TCGETA = 0x5405
|
||||||
|
TCGETS = 0x5401
|
||||||
TCIFLUSH = 0x0
|
TCIFLUSH = 0x0
|
||||||
TCIOFF = 0x2
|
TCIOFF = 0x2
|
||||||
TCIOFLUSH = 0x2
|
TCIOFLUSH = 0x2
|
||||||
|
@ -915,6 +918,15 @@ const (
|
||||||
TCP_TIMESTAMP_OPTLEN = 0xc
|
TCP_TIMESTAMP_OPTLEN = 0xc
|
||||||
TCP_UNSETPRIV = 0x28
|
TCP_UNSETPRIV = 0x28
|
||||||
TCSAFLUSH = 0x2
|
TCSAFLUSH = 0x2
|
||||||
|
TCSBRK = 0x5409
|
||||||
|
TCSETA = 0x5406
|
||||||
|
TCSETAF = 0x5408
|
||||||
|
TCSETAW = 0x5407
|
||||||
|
TCSETS = 0x5402
|
||||||
|
TCSETSF = 0x5404
|
||||||
|
TCSETSW = 0x5403
|
||||||
|
TCXONC = 0x540b
|
||||||
|
TIOC = 0x5400
|
||||||
TIOCCBRK = 0x2000747a
|
TIOCCBRK = 0x2000747a
|
||||||
TIOCCDTR = 0x20007478
|
TIOCCDTR = 0x20007478
|
||||||
TIOCCONS = 0x80047462
|
TIOCCONS = 0x80047462
|
||||||
|
|
12
vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go
generated
vendored
12
vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go
generated
vendored
|
@ -867,6 +867,9 @@ const (
|
||||||
TAB2 = 0x800
|
TAB2 = 0x800
|
||||||
TAB3 = 0xc00
|
TAB3 = 0xc00
|
||||||
TABDLY = 0xc00
|
TABDLY = 0xc00
|
||||||
|
TCFLSH = 0x540c
|
||||||
|
TCGETA = 0x5405
|
||||||
|
TCGETS = 0x5401
|
||||||
TCIFLUSH = 0x0
|
TCIFLUSH = 0x0
|
||||||
TCIOFF = 0x2
|
TCIOFF = 0x2
|
||||||
TCIOFLUSH = 0x2
|
TCIOFLUSH = 0x2
|
||||||
|
@ -915,6 +918,15 @@ const (
|
||||||
TCP_TIMESTAMP_OPTLEN = 0xc
|
TCP_TIMESTAMP_OPTLEN = 0xc
|
||||||
TCP_UNSETPRIV = 0x28
|
TCP_UNSETPRIV = 0x28
|
||||||
TCSAFLUSH = 0x2
|
TCSAFLUSH = 0x2
|
||||||
|
TCSBRK = 0x5409
|
||||||
|
TCSETA = 0x5406
|
||||||
|
TCSETAF = 0x5408
|
||||||
|
TCSETAW = 0x5407
|
||||||
|
TCSETS = 0x5402
|
||||||
|
TCSETSF = 0x5404
|
||||||
|
TCSETSW = 0x5403
|
||||||
|
TCXONC = 0x540b
|
||||||
|
TIOC = 0x5400
|
||||||
TIOCCBRK = 0x2000747a
|
TIOCCBRK = 0x2000747a
|
||||||
TIOCCDTR = 0x20007478
|
TIOCCDTR = 0x20007478
|
||||||
TIOCCONS = 0xffffffff80047462
|
TIOCCONS = 0xffffffff80047462
|
||||||
|
|
40
vendor/golang.org/x/sys/unix/zerrors_linux_386.go
generated
vendored
40
vendor/golang.org/x/sys/unix/zerrors_linux_386.go
generated
vendored
|
@ -64,6 +64,7 @@ const (
|
||||||
AF_VSOCK = 0x28
|
AF_VSOCK = 0x28
|
||||||
AF_WANPIPE = 0x19
|
AF_WANPIPE = 0x19
|
||||||
AF_X25 = 0x9
|
AF_X25 = 0x9
|
||||||
|
AF_XDP = 0x2c
|
||||||
ALG_OP_DECRYPT = 0x0
|
ALG_OP_DECRYPT = 0x0
|
||||||
ALG_OP_ENCRYPT = 0x1
|
ALG_OP_ENCRYPT = 0x1
|
||||||
ALG_SET_AEAD_ASSOCLEN = 0x4
|
ALG_SET_AEAD_ASSOCLEN = 0x4
|
||||||
|
@ -977,6 +978,21 @@ const (
|
||||||
MCL_CURRENT = 0x1
|
MCL_CURRENT = 0x1
|
||||||
MCL_FUTURE = 0x2
|
MCL_FUTURE = 0x2
|
||||||
MCL_ONFAULT = 0x4
|
MCL_ONFAULT = 0x4
|
||||||
|
MFD_ALLOW_SEALING = 0x2
|
||||||
|
MFD_CLOEXEC = 0x1
|
||||||
|
MFD_HUGETLB = 0x4
|
||||||
|
MFD_HUGE_16GB = -0x78000000
|
||||||
|
MFD_HUGE_16MB = 0x60000000
|
||||||
|
MFD_HUGE_1GB = 0x78000000
|
||||||
|
MFD_HUGE_1MB = 0x50000000
|
||||||
|
MFD_HUGE_256MB = 0x70000000
|
||||||
|
MFD_HUGE_2GB = 0x7c000000
|
||||||
|
MFD_HUGE_2MB = 0x54000000
|
||||||
|
MFD_HUGE_512KB = 0x4c000000
|
||||||
|
MFD_HUGE_64KB = 0x40000000
|
||||||
|
MFD_HUGE_8MB = 0x5c000000
|
||||||
|
MFD_HUGE_MASK = 0x3f
|
||||||
|
MFD_HUGE_SHIFT = 0x1a
|
||||||
MINIX2_SUPER_MAGIC = 0x2468
|
MINIX2_SUPER_MAGIC = 0x2468
|
||||||
MINIX2_SUPER_MAGIC2 = 0x2478
|
MINIX2_SUPER_MAGIC2 = 0x2478
|
||||||
MINIX3_SUPER_MAGIC = 0x4d5a
|
MINIX3_SUPER_MAGIC = 0x4d5a
|
||||||
|
@ -1796,6 +1812,7 @@ const (
|
||||||
SOL_TIPC = 0x10f
|
SOL_TIPC = 0x10f
|
||||||
SOL_TLS = 0x11a
|
SOL_TLS = 0x11a
|
||||||
SOL_X25 = 0x106
|
SOL_X25 = 0x106
|
||||||
|
SOL_XDP = 0x11b
|
||||||
SOMAXCONN = 0x80
|
SOMAXCONN = 0x80
|
||||||
SO_ACCEPTCONN = 0x1e
|
SO_ACCEPTCONN = 0x1e
|
||||||
SO_ATTACH_BPF = 0x32
|
SO_ATTACH_BPF = 0x32
|
||||||
|
@ -1891,6 +1908,9 @@ const (
|
||||||
STATX_TYPE = 0x1
|
STATX_TYPE = 0x1
|
||||||
STATX_UID = 0x8
|
STATX_UID = 0x8
|
||||||
STATX__RESERVED = 0x80000000
|
STATX__RESERVED = 0x80000000
|
||||||
|
SYNC_FILE_RANGE_WAIT_AFTER = 0x4
|
||||||
|
SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
|
||||||
|
SYNC_FILE_RANGE_WRITE = 0x2
|
||||||
SYSFS_MAGIC = 0x62656572
|
SYSFS_MAGIC = 0x62656572
|
||||||
S_BLKSIZE = 0x200
|
S_BLKSIZE = 0x200
|
||||||
S_IEXEC = 0x40
|
S_IEXEC = 0x40
|
||||||
|
@ -2275,6 +2295,26 @@ const (
|
||||||
XATTR_CREATE = 0x1
|
XATTR_CREATE = 0x1
|
||||||
XATTR_REPLACE = 0x2
|
XATTR_REPLACE = 0x2
|
||||||
XCASE = 0x4
|
XCASE = 0x4
|
||||||
|
XDP_COPY = 0x2
|
||||||
|
XDP_FLAGS_DRV_MODE = 0x4
|
||||||
|
XDP_FLAGS_HW_MODE = 0x8
|
||||||
|
XDP_FLAGS_MASK = 0xf
|
||||||
|
XDP_FLAGS_MODES = 0xe
|
||||||
|
XDP_FLAGS_SKB_MODE = 0x2
|
||||||
|
XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
|
||||||
|
XDP_MMAP_OFFSETS = 0x1
|
||||||
|
XDP_PGOFF_RX_RING = 0x0
|
||||||
|
XDP_PGOFF_TX_RING = 0x80000000
|
||||||
|
XDP_RX_RING = 0x2
|
||||||
|
XDP_SHARED_UMEM = 0x1
|
||||||
|
XDP_STATISTICS = 0x7
|
||||||
|
XDP_TX_RING = 0x3
|
||||||
|
XDP_UMEM_COMPLETION_RING = 0x6
|
||||||
|
XDP_UMEM_FILL_RING = 0x5
|
||||||
|
XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
|
||||||
|
XDP_UMEM_PGOFF_FILL_RING = 0x100000000
|
||||||
|
XDP_UMEM_REG = 0x4
|
||||||
|
XDP_ZEROCOPY = 0x4
|
||||||
XENFS_SUPER_MAGIC = 0xabba1974
|
XENFS_SUPER_MAGIC = 0xabba1974
|
||||||
XTABS = 0x1800
|
XTABS = 0x1800
|
||||||
ZSMALLOC_MAGIC = 0x58295829
|
ZSMALLOC_MAGIC = 0x58295829
|
||||||
|
|
40
vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
generated
vendored
40
vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
generated
vendored
|
@ -64,6 +64,7 @@ const (
|
||||||
AF_VSOCK = 0x28
|
AF_VSOCK = 0x28
|
||||||
AF_WANPIPE = 0x19
|
AF_WANPIPE = 0x19
|
||||||
AF_X25 = 0x9
|
AF_X25 = 0x9
|
||||||
|
AF_XDP = 0x2c
|
||||||
ALG_OP_DECRYPT = 0x0
|
ALG_OP_DECRYPT = 0x0
|
||||||
ALG_OP_ENCRYPT = 0x1
|
ALG_OP_ENCRYPT = 0x1
|
||||||
ALG_SET_AEAD_ASSOCLEN = 0x4
|
ALG_SET_AEAD_ASSOCLEN = 0x4
|
||||||
|
@ -977,6 +978,21 @@ const (
|
||||||
MCL_CURRENT = 0x1
|
MCL_CURRENT = 0x1
|
||||||
MCL_FUTURE = 0x2
|
MCL_FUTURE = 0x2
|
||||||
MCL_ONFAULT = 0x4
|
MCL_ONFAULT = 0x4
|
||||||
|
MFD_ALLOW_SEALING = 0x2
|
||||||
|
MFD_CLOEXEC = 0x1
|
||||||
|
MFD_HUGETLB = 0x4
|
||||||
|
MFD_HUGE_16GB = -0x78000000
|
||||||
|
MFD_HUGE_16MB = 0x60000000
|
||||||
|
MFD_HUGE_1GB = 0x78000000
|
||||||
|
MFD_HUGE_1MB = 0x50000000
|
||||||
|
MFD_HUGE_256MB = 0x70000000
|
||||||
|
MFD_HUGE_2GB = 0x7c000000
|
||||||
|
MFD_HUGE_2MB = 0x54000000
|
||||||
|
MFD_HUGE_512KB = 0x4c000000
|
||||||
|
MFD_HUGE_64KB = 0x40000000
|
||||||
|
MFD_HUGE_8MB = 0x5c000000
|
||||||
|
MFD_HUGE_MASK = 0x3f
|
||||||
|
MFD_HUGE_SHIFT = 0x1a
|
||||||
MINIX2_SUPER_MAGIC = 0x2468
|
MINIX2_SUPER_MAGIC = 0x2468
|
||||||
MINIX2_SUPER_MAGIC2 = 0x2478
|
MINIX2_SUPER_MAGIC2 = 0x2478
|
||||||
MINIX3_SUPER_MAGIC = 0x4d5a
|
MINIX3_SUPER_MAGIC = 0x4d5a
|
||||||
|
@ -1797,6 +1813,7 @@ const (
|
||||||
SOL_TIPC = 0x10f
|
SOL_TIPC = 0x10f
|
||||||
SOL_TLS = 0x11a
|
SOL_TLS = 0x11a
|
||||||
SOL_X25 = 0x106
|
SOL_X25 = 0x106
|
||||||
|
SOL_XDP = 0x11b
|
||||||
SOMAXCONN = 0x80
|
SOMAXCONN = 0x80
|
||||||
SO_ACCEPTCONN = 0x1e
|
SO_ACCEPTCONN = 0x1e
|
||||||
SO_ATTACH_BPF = 0x32
|
SO_ATTACH_BPF = 0x32
|
||||||
|
@ -1892,6 +1909,9 @@ const (
|
||||||
STATX_TYPE = 0x1
|
STATX_TYPE = 0x1
|
||||||
STATX_UID = 0x8
|
STATX_UID = 0x8
|
||||||
STATX__RESERVED = 0x80000000
|
STATX__RESERVED = 0x80000000
|
||||||
|
SYNC_FILE_RANGE_WAIT_AFTER = 0x4
|
||||||
|
SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
|
||||||
|
SYNC_FILE_RANGE_WRITE = 0x2
|
||||||
SYSFS_MAGIC = 0x62656572
|
SYSFS_MAGIC = 0x62656572
|
||||||
S_BLKSIZE = 0x200
|
S_BLKSIZE = 0x200
|
||||||
S_IEXEC = 0x40
|
S_IEXEC = 0x40
|
||||||
|
@ -2275,6 +2295,26 @@ const (
|
||||||
XATTR_CREATE = 0x1
|
XATTR_CREATE = 0x1
|
||||||
XATTR_REPLACE = 0x2
|
XATTR_REPLACE = 0x2
|
||||||
XCASE = 0x4
|
XCASE = 0x4
|
||||||
|
XDP_COPY = 0x2
|
||||||
|
XDP_FLAGS_DRV_MODE = 0x4
|
||||||
|
XDP_FLAGS_HW_MODE = 0x8
|
||||||
|
XDP_FLAGS_MASK = 0xf
|
||||||
|
XDP_FLAGS_MODES = 0xe
|
||||||
|
XDP_FLAGS_SKB_MODE = 0x2
|
||||||
|
XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
|
||||||
|
XDP_MMAP_OFFSETS = 0x1
|
||||||
|
XDP_PGOFF_RX_RING = 0x0
|
||||||
|
XDP_PGOFF_TX_RING = 0x80000000
|
||||||
|
XDP_RX_RING = 0x2
|
||||||
|
XDP_SHARED_UMEM = 0x1
|
||||||
|
XDP_STATISTICS = 0x7
|
||||||
|
XDP_TX_RING = 0x3
|
||||||
|
XDP_UMEM_COMPLETION_RING = 0x6
|
||||||
|
XDP_UMEM_FILL_RING = 0x5
|
||||||
|
XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
|
||||||
|
XDP_UMEM_PGOFF_FILL_RING = 0x100000000
|
||||||
|
XDP_UMEM_REG = 0x4
|
||||||
|
XDP_ZEROCOPY = 0x4
|
||||||
XENFS_SUPER_MAGIC = 0xabba1974
|
XENFS_SUPER_MAGIC = 0xabba1974
|
||||||
XTABS = 0x1800
|
XTABS = 0x1800
|
||||||
ZSMALLOC_MAGIC = 0x58295829
|
ZSMALLOC_MAGIC = 0x58295829
|
||||||
|
|
40
vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
generated
vendored
40
vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
generated
vendored
|
@ -64,6 +64,7 @@ const (
|
||||||
AF_VSOCK = 0x28
|
AF_VSOCK = 0x28
|
||||||
AF_WANPIPE = 0x19
|
AF_WANPIPE = 0x19
|
||||||
AF_X25 = 0x9
|
AF_X25 = 0x9
|
||||||
|
AF_XDP = 0x2c
|
||||||
ALG_OP_DECRYPT = 0x0
|
ALG_OP_DECRYPT = 0x0
|
||||||
ALG_OP_ENCRYPT = 0x1
|
ALG_OP_ENCRYPT = 0x1
|
||||||
ALG_SET_AEAD_ASSOCLEN = 0x4
|
ALG_SET_AEAD_ASSOCLEN = 0x4
|
||||||
|
@ -975,6 +976,21 @@ const (
|
||||||
MCL_CURRENT = 0x1
|
MCL_CURRENT = 0x1
|
||||||
MCL_FUTURE = 0x2
|
MCL_FUTURE = 0x2
|
||||||
MCL_ONFAULT = 0x4
|
MCL_ONFAULT = 0x4
|
||||||
|
MFD_ALLOW_SEALING = 0x2
|
||||||
|
MFD_CLOEXEC = 0x1
|
||||||
|
MFD_HUGETLB = 0x4
|
||||||
|
MFD_HUGE_16GB = -0x78000000
|
||||||
|
MFD_HUGE_16MB = 0x60000000
|
||||||
|
MFD_HUGE_1GB = 0x78000000
|
||||||
|
MFD_HUGE_1MB = 0x50000000
|
||||||
|
MFD_HUGE_256MB = 0x70000000
|
||||||
|
MFD_HUGE_2GB = 0x7c000000
|
||||||
|
MFD_HUGE_2MB = 0x54000000
|
||||||
|
MFD_HUGE_512KB = 0x4c000000
|
||||||
|
MFD_HUGE_64KB = 0x40000000
|
||||||
|
MFD_HUGE_8MB = 0x5c000000
|
||||||
|
MFD_HUGE_MASK = 0x3f
|
||||||
|
MFD_HUGE_SHIFT = 0x1a
|
||||||
MINIX2_SUPER_MAGIC = 0x2468
|
MINIX2_SUPER_MAGIC = 0x2468
|
||||||
MINIX2_SUPER_MAGIC2 = 0x2478
|
MINIX2_SUPER_MAGIC2 = 0x2478
|
||||||
MINIX3_SUPER_MAGIC = 0x4d5a
|
MINIX3_SUPER_MAGIC = 0x4d5a
|
||||||
|
@ -1803,6 +1819,7 @@ const (
|
||||||
SOL_TIPC = 0x10f
|
SOL_TIPC = 0x10f
|
||||||
SOL_TLS = 0x11a
|
SOL_TLS = 0x11a
|
||||||
SOL_X25 = 0x106
|
SOL_X25 = 0x106
|
||||||
|
SOL_XDP = 0x11b
|
||||||
SOMAXCONN = 0x80
|
SOMAXCONN = 0x80
|
||||||
SO_ACCEPTCONN = 0x1e
|
SO_ACCEPTCONN = 0x1e
|
||||||
SO_ATTACH_BPF = 0x32
|
SO_ATTACH_BPF = 0x32
|
||||||
|
@ -1898,6 +1915,9 @@ const (
|
||||||
STATX_TYPE = 0x1
|
STATX_TYPE = 0x1
|
||||||
STATX_UID = 0x8
|
STATX_UID = 0x8
|
||||||
STATX__RESERVED = 0x80000000
|
STATX__RESERVED = 0x80000000
|
||||||
|
SYNC_FILE_RANGE_WAIT_AFTER = 0x4
|
||||||
|
SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
|
||||||
|
SYNC_FILE_RANGE_WRITE = 0x2
|
||||||
SYSFS_MAGIC = 0x62656572
|
SYSFS_MAGIC = 0x62656572
|
||||||
S_BLKSIZE = 0x200
|
S_BLKSIZE = 0x200
|
||||||
S_IEXEC = 0x40
|
S_IEXEC = 0x40
|
||||||
|
@ -2281,6 +2301,26 @@ const (
|
||||||
XATTR_CREATE = 0x1
|
XATTR_CREATE = 0x1
|
||||||
XATTR_REPLACE = 0x2
|
XATTR_REPLACE = 0x2
|
||||||
XCASE = 0x4
|
XCASE = 0x4
|
||||||
|
XDP_COPY = 0x2
|
||||||
|
XDP_FLAGS_DRV_MODE = 0x4
|
||||||
|
XDP_FLAGS_HW_MODE = 0x8
|
||||||
|
XDP_FLAGS_MASK = 0xf
|
||||||
|
XDP_FLAGS_MODES = 0xe
|
||||||
|
XDP_FLAGS_SKB_MODE = 0x2
|
||||||
|
XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
|
||||||
|
XDP_MMAP_OFFSETS = 0x1
|
||||||
|
XDP_PGOFF_RX_RING = 0x0
|
||||||
|
XDP_PGOFF_TX_RING = 0x80000000
|
||||||
|
XDP_RX_RING = 0x2
|
||||||
|
XDP_SHARED_UMEM = 0x1
|
||||||
|
XDP_STATISTICS = 0x7
|
||||||
|
XDP_TX_RING = 0x3
|
||||||
|
XDP_UMEM_COMPLETION_RING = 0x6
|
||||||
|
XDP_UMEM_FILL_RING = 0x5
|
||||||
|
XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
|
||||||
|
XDP_UMEM_PGOFF_FILL_RING = 0x100000000
|
||||||
|
XDP_UMEM_REG = 0x4
|
||||||
|
XDP_ZEROCOPY = 0x4
|
||||||
XENFS_SUPER_MAGIC = 0xabba1974
|
XENFS_SUPER_MAGIC = 0xabba1974
|
||||||
XTABS = 0x1800
|
XTABS = 0x1800
|
||||||
ZSMALLOC_MAGIC = 0x58295829
|
ZSMALLOC_MAGIC = 0x58295829
|
||||||
|
|
40
vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
generated
vendored
40
vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
generated
vendored
|
@ -64,6 +64,7 @@ const (
|
||||||
AF_VSOCK = 0x28
|
AF_VSOCK = 0x28
|
||||||
AF_WANPIPE = 0x19
|
AF_WANPIPE = 0x19
|
||||||
AF_X25 = 0x9
|
AF_X25 = 0x9
|
||||||
|
AF_XDP = 0x2c
|
||||||
ALG_OP_DECRYPT = 0x0
|
ALG_OP_DECRYPT = 0x0
|
||||||
ALG_OP_ENCRYPT = 0x1
|
ALG_OP_ENCRYPT = 0x1
|
||||||
ALG_SET_AEAD_ASSOCLEN = 0x4
|
ALG_SET_AEAD_ASSOCLEN = 0x4
|
||||||
|
@ -978,6 +979,21 @@ const (
|
||||||
MCL_CURRENT = 0x1
|
MCL_CURRENT = 0x1
|
||||||
MCL_FUTURE = 0x2
|
MCL_FUTURE = 0x2
|
||||||
MCL_ONFAULT = 0x4
|
MCL_ONFAULT = 0x4
|
||||||
|
MFD_ALLOW_SEALING = 0x2
|
||||||
|
MFD_CLOEXEC = 0x1
|
||||||
|
MFD_HUGETLB = 0x4
|
||||||
|
MFD_HUGE_16GB = -0x78000000
|
||||||
|
MFD_HUGE_16MB = 0x60000000
|
||||||
|
MFD_HUGE_1GB = 0x78000000
|
||||||
|
MFD_HUGE_1MB = 0x50000000
|
||||||
|
MFD_HUGE_256MB = 0x70000000
|
||||||
|
MFD_HUGE_2GB = 0x7c000000
|
||||||
|
MFD_HUGE_2MB = 0x54000000
|
||||||
|
MFD_HUGE_512KB = 0x4c000000
|
||||||
|
MFD_HUGE_64KB = 0x40000000
|
||||||
|
MFD_HUGE_8MB = 0x5c000000
|
||||||
|
MFD_HUGE_MASK = 0x3f
|
||||||
|
MFD_HUGE_SHIFT = 0x1a
|
||||||
MINIX2_SUPER_MAGIC = 0x2468
|
MINIX2_SUPER_MAGIC = 0x2468
|
||||||
MINIX2_SUPER_MAGIC2 = 0x2478
|
MINIX2_SUPER_MAGIC2 = 0x2478
|
||||||
MINIX3_SUPER_MAGIC = 0x4d5a
|
MINIX3_SUPER_MAGIC = 0x4d5a
|
||||||
|
@ -1787,6 +1803,7 @@ const (
|
||||||
SOL_TIPC = 0x10f
|
SOL_TIPC = 0x10f
|
||||||
SOL_TLS = 0x11a
|
SOL_TLS = 0x11a
|
||||||
SOL_X25 = 0x106
|
SOL_X25 = 0x106
|
||||||
|
SOL_XDP = 0x11b
|
||||||
SOMAXCONN = 0x80
|
SOMAXCONN = 0x80
|
||||||
SO_ACCEPTCONN = 0x1e
|
SO_ACCEPTCONN = 0x1e
|
||||||
SO_ATTACH_BPF = 0x32
|
SO_ATTACH_BPF = 0x32
|
||||||
|
@ -1883,6 +1900,9 @@ const (
|
||||||
STATX_UID = 0x8
|
STATX_UID = 0x8
|
||||||
STATX__RESERVED = 0x80000000
|
STATX__RESERVED = 0x80000000
|
||||||
SVE_MAGIC = 0x53564501
|
SVE_MAGIC = 0x53564501
|
||||||
|
SYNC_FILE_RANGE_WAIT_AFTER = 0x4
|
||||||
|
SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
|
||||||
|
SYNC_FILE_RANGE_WRITE = 0x2
|
||||||
SYSFS_MAGIC = 0x62656572
|
SYSFS_MAGIC = 0x62656572
|
||||||
S_BLKSIZE = 0x200
|
S_BLKSIZE = 0x200
|
||||||
S_IEXEC = 0x40
|
S_IEXEC = 0x40
|
||||||
|
@ -2266,6 +2286,26 @@ const (
|
||||||
XATTR_CREATE = 0x1
|
XATTR_CREATE = 0x1
|
||||||
XATTR_REPLACE = 0x2
|
XATTR_REPLACE = 0x2
|
||||||
XCASE = 0x4
|
XCASE = 0x4
|
||||||
|
XDP_COPY = 0x2
|
||||||
|
XDP_FLAGS_DRV_MODE = 0x4
|
||||||
|
XDP_FLAGS_HW_MODE = 0x8
|
||||||
|
XDP_FLAGS_MASK = 0xf
|
||||||
|
XDP_FLAGS_MODES = 0xe
|
||||||
|
XDP_FLAGS_SKB_MODE = 0x2
|
||||||
|
XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
|
||||||
|
XDP_MMAP_OFFSETS = 0x1
|
||||||
|
XDP_PGOFF_RX_RING = 0x0
|
||||||
|
XDP_PGOFF_TX_RING = 0x80000000
|
||||||
|
XDP_RX_RING = 0x2
|
||||||
|
XDP_SHARED_UMEM = 0x1
|
||||||
|
XDP_STATISTICS = 0x7
|
||||||
|
XDP_TX_RING = 0x3
|
||||||
|
XDP_UMEM_COMPLETION_RING = 0x6
|
||||||
|
XDP_UMEM_FILL_RING = 0x5
|
||||||
|
XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
|
||||||
|
XDP_UMEM_PGOFF_FILL_RING = 0x100000000
|
||||||
|
XDP_UMEM_REG = 0x4
|
||||||
|
XDP_ZEROCOPY = 0x4
|
||||||
XENFS_SUPER_MAGIC = 0xabba1974
|
XENFS_SUPER_MAGIC = 0xabba1974
|
||||||
XTABS = 0x1800
|
XTABS = 0x1800
|
||||||
ZSMALLOC_MAGIC = 0x58295829
|
ZSMALLOC_MAGIC = 0x58295829
|
||||||
|
|
40
vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
generated
vendored
40
vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
generated
vendored
|
@ -64,6 +64,7 @@ const (
|
||||||
AF_VSOCK = 0x28
|
AF_VSOCK = 0x28
|
||||||
AF_WANPIPE = 0x19
|
AF_WANPIPE = 0x19
|
||||||
AF_X25 = 0x9
|
AF_X25 = 0x9
|
||||||
|
AF_XDP = 0x2c
|
||||||
ALG_OP_DECRYPT = 0x0
|
ALG_OP_DECRYPT = 0x0
|
||||||
ALG_OP_ENCRYPT = 0x1
|
ALG_OP_ENCRYPT = 0x1
|
||||||
ALG_SET_AEAD_ASSOCLEN = 0x4
|
ALG_SET_AEAD_ASSOCLEN = 0x4
|
||||||
|
@ -975,6 +976,21 @@ const (
|
||||||
MCL_CURRENT = 0x1
|
MCL_CURRENT = 0x1
|
||||||
MCL_FUTURE = 0x2
|
MCL_FUTURE = 0x2
|
||||||
MCL_ONFAULT = 0x4
|
MCL_ONFAULT = 0x4
|
||||||
|
MFD_ALLOW_SEALING = 0x2
|
||||||
|
MFD_CLOEXEC = 0x1
|
||||||
|
MFD_HUGETLB = 0x4
|
||||||
|
MFD_HUGE_16GB = -0x78000000
|
||||||
|
MFD_HUGE_16MB = 0x60000000
|
||||||
|
MFD_HUGE_1GB = 0x78000000
|
||||||
|
MFD_HUGE_1MB = 0x50000000
|
||||||
|
MFD_HUGE_256MB = 0x70000000
|
||||||
|
MFD_HUGE_2GB = 0x7c000000
|
||||||
|
MFD_HUGE_2MB = 0x54000000
|
||||||
|
MFD_HUGE_512KB = 0x4c000000
|
||||||
|
MFD_HUGE_64KB = 0x40000000
|
||||||
|
MFD_HUGE_8MB = 0x5c000000
|
||||||
|
MFD_HUGE_MASK = 0x3f
|
||||||
|
MFD_HUGE_SHIFT = 0x1a
|
||||||
MINIX2_SUPER_MAGIC = 0x2468
|
MINIX2_SUPER_MAGIC = 0x2468
|
||||||
MINIX2_SUPER_MAGIC2 = 0x2478
|
MINIX2_SUPER_MAGIC2 = 0x2478
|
||||||
MINIX3_SUPER_MAGIC = 0x4d5a
|
MINIX3_SUPER_MAGIC = 0x4d5a
|
||||||
|
@ -1796,6 +1812,7 @@ const (
|
||||||
SOL_TIPC = 0x10f
|
SOL_TIPC = 0x10f
|
||||||
SOL_TLS = 0x11a
|
SOL_TLS = 0x11a
|
||||||
SOL_X25 = 0x106
|
SOL_X25 = 0x106
|
||||||
|
SOL_XDP = 0x11b
|
||||||
SOMAXCONN = 0x80
|
SOMAXCONN = 0x80
|
||||||
SO_ACCEPTCONN = 0x1009
|
SO_ACCEPTCONN = 0x1009
|
||||||
SO_ATTACH_BPF = 0x32
|
SO_ATTACH_BPF = 0x32
|
||||||
|
@ -1892,6 +1909,9 @@ const (
|
||||||
STATX_TYPE = 0x1
|
STATX_TYPE = 0x1
|
||||||
STATX_UID = 0x8
|
STATX_UID = 0x8
|
||||||
STATX__RESERVED = 0x80000000
|
STATX__RESERVED = 0x80000000
|
||||||
|
SYNC_FILE_RANGE_WAIT_AFTER = 0x4
|
||||||
|
SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
|
||||||
|
SYNC_FILE_RANGE_WRITE = 0x2
|
||||||
SYSFS_MAGIC = 0x62656572
|
SYSFS_MAGIC = 0x62656572
|
||||||
S_BLKSIZE = 0x200
|
S_BLKSIZE = 0x200
|
||||||
S_IEXEC = 0x40
|
S_IEXEC = 0x40
|
||||||
|
@ -2277,6 +2297,26 @@ const (
|
||||||
XATTR_CREATE = 0x1
|
XATTR_CREATE = 0x1
|
||||||
XATTR_REPLACE = 0x2
|
XATTR_REPLACE = 0x2
|
||||||
XCASE = 0x4
|
XCASE = 0x4
|
||||||
|
XDP_COPY = 0x2
|
||||||
|
XDP_FLAGS_DRV_MODE = 0x4
|
||||||
|
XDP_FLAGS_HW_MODE = 0x8
|
||||||
|
XDP_FLAGS_MASK = 0xf
|
||||||
|
XDP_FLAGS_MODES = 0xe
|
||||||
|
XDP_FLAGS_SKB_MODE = 0x2
|
||||||
|
XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
|
||||||
|
XDP_MMAP_OFFSETS = 0x1
|
||||||
|
XDP_PGOFF_RX_RING = 0x0
|
||||||
|
XDP_PGOFF_TX_RING = 0x80000000
|
||||||
|
XDP_RX_RING = 0x2
|
||||||
|
XDP_SHARED_UMEM = 0x1
|
||||||
|
XDP_STATISTICS = 0x7
|
||||||
|
XDP_TX_RING = 0x3
|
||||||
|
XDP_UMEM_COMPLETION_RING = 0x6
|
||||||
|
XDP_UMEM_FILL_RING = 0x5
|
||||||
|
XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
|
||||||
|
XDP_UMEM_PGOFF_FILL_RING = 0x100000000
|
||||||
|
XDP_UMEM_REG = 0x4
|
||||||
|
XDP_ZEROCOPY = 0x4
|
||||||
XENFS_SUPER_MAGIC = 0xabba1974
|
XENFS_SUPER_MAGIC = 0xabba1974
|
||||||
XTABS = 0x1800
|
XTABS = 0x1800
|
||||||
ZSMALLOC_MAGIC = 0x58295829
|
ZSMALLOC_MAGIC = 0x58295829
|
||||||
|
|
40
vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
generated
vendored
40
vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
generated
vendored
|
@ -64,6 +64,7 @@ const (
|
||||||
AF_VSOCK = 0x28
|
AF_VSOCK = 0x28
|
||||||
AF_WANPIPE = 0x19
|
AF_WANPIPE = 0x19
|
||||||
AF_X25 = 0x9
|
AF_X25 = 0x9
|
||||||
|
AF_XDP = 0x2c
|
||||||
ALG_OP_DECRYPT = 0x0
|
ALG_OP_DECRYPT = 0x0
|
||||||
ALG_OP_ENCRYPT = 0x1
|
ALG_OP_ENCRYPT = 0x1
|
||||||
ALG_SET_AEAD_ASSOCLEN = 0x4
|
ALG_SET_AEAD_ASSOCLEN = 0x4
|
||||||
|
@ -975,6 +976,21 @@ const (
|
||||||
MCL_CURRENT = 0x1
|
MCL_CURRENT = 0x1
|
||||||
MCL_FUTURE = 0x2
|
MCL_FUTURE = 0x2
|
||||||
MCL_ONFAULT = 0x4
|
MCL_ONFAULT = 0x4
|
||||||
|
MFD_ALLOW_SEALING = 0x2
|
||||||
|
MFD_CLOEXEC = 0x1
|
||||||
|
MFD_HUGETLB = 0x4
|
||||||
|
MFD_HUGE_16GB = -0x78000000
|
||||||
|
MFD_HUGE_16MB = 0x60000000
|
||||||
|
MFD_HUGE_1GB = 0x78000000
|
||||||
|
MFD_HUGE_1MB = 0x50000000
|
||||||
|
MFD_HUGE_256MB = 0x70000000
|
||||||
|
MFD_HUGE_2GB = 0x7c000000
|
||||||
|
MFD_HUGE_2MB = 0x54000000
|
||||||
|
MFD_HUGE_512KB = 0x4c000000
|
||||||
|
MFD_HUGE_64KB = 0x40000000
|
||||||
|
MFD_HUGE_8MB = 0x5c000000
|
||||||
|
MFD_HUGE_MASK = 0x3f
|
||||||
|
MFD_HUGE_SHIFT = 0x1a
|
||||||
MINIX2_SUPER_MAGIC = 0x2468
|
MINIX2_SUPER_MAGIC = 0x2468
|
||||||
MINIX2_SUPER_MAGIC2 = 0x2478
|
MINIX2_SUPER_MAGIC2 = 0x2478
|
||||||
MINIX3_SUPER_MAGIC = 0x4d5a
|
MINIX3_SUPER_MAGIC = 0x4d5a
|
||||||
|
@ -1796,6 +1812,7 @@ const (
|
||||||
SOL_TIPC = 0x10f
|
SOL_TIPC = 0x10f
|
||||||
SOL_TLS = 0x11a
|
SOL_TLS = 0x11a
|
||||||
SOL_X25 = 0x106
|
SOL_X25 = 0x106
|
||||||
|
SOL_XDP = 0x11b
|
||||||
SOMAXCONN = 0x80
|
SOMAXCONN = 0x80
|
||||||
SO_ACCEPTCONN = 0x1009
|
SO_ACCEPTCONN = 0x1009
|
||||||
SO_ATTACH_BPF = 0x32
|
SO_ATTACH_BPF = 0x32
|
||||||
|
@ -1892,6 +1909,9 @@ const (
|
||||||
STATX_TYPE = 0x1
|
STATX_TYPE = 0x1
|
||||||
STATX_UID = 0x8
|
STATX_UID = 0x8
|
||||||
STATX__RESERVED = 0x80000000
|
STATX__RESERVED = 0x80000000
|
||||||
|
SYNC_FILE_RANGE_WAIT_AFTER = 0x4
|
||||||
|
SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
|
||||||
|
SYNC_FILE_RANGE_WRITE = 0x2
|
||||||
SYSFS_MAGIC = 0x62656572
|
SYSFS_MAGIC = 0x62656572
|
||||||
S_BLKSIZE = 0x200
|
S_BLKSIZE = 0x200
|
||||||
S_IEXEC = 0x40
|
S_IEXEC = 0x40
|
||||||
|
@ -2277,6 +2297,26 @@ const (
|
||||||
XATTR_CREATE = 0x1
|
XATTR_CREATE = 0x1
|
||||||
XATTR_REPLACE = 0x2
|
XATTR_REPLACE = 0x2
|
||||||
XCASE = 0x4
|
XCASE = 0x4
|
||||||
|
XDP_COPY = 0x2
|
||||||
|
XDP_FLAGS_DRV_MODE = 0x4
|
||||||
|
XDP_FLAGS_HW_MODE = 0x8
|
||||||
|
XDP_FLAGS_MASK = 0xf
|
||||||
|
XDP_FLAGS_MODES = 0xe
|
||||||
|
XDP_FLAGS_SKB_MODE = 0x2
|
||||||
|
XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
|
||||||
|
XDP_MMAP_OFFSETS = 0x1
|
||||||
|
XDP_PGOFF_RX_RING = 0x0
|
||||||
|
XDP_PGOFF_TX_RING = 0x80000000
|
||||||
|
XDP_RX_RING = 0x2
|
||||||
|
XDP_SHARED_UMEM = 0x1
|
||||||
|
XDP_STATISTICS = 0x7
|
||||||
|
XDP_TX_RING = 0x3
|
||||||
|
XDP_UMEM_COMPLETION_RING = 0x6
|
||||||
|
XDP_UMEM_FILL_RING = 0x5
|
||||||
|
XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
|
||||||
|
XDP_UMEM_PGOFF_FILL_RING = 0x100000000
|
||||||
|
XDP_UMEM_REG = 0x4
|
||||||
|
XDP_ZEROCOPY = 0x4
|
||||||
XENFS_SUPER_MAGIC = 0xabba1974
|
XENFS_SUPER_MAGIC = 0xabba1974
|
||||||
XTABS = 0x1800
|
XTABS = 0x1800
|
||||||
ZSMALLOC_MAGIC = 0x58295829
|
ZSMALLOC_MAGIC = 0x58295829
|
||||||
|
|
40
vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
generated
vendored
40
vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
generated
vendored
|
@ -64,6 +64,7 @@ const (
|
||||||
AF_VSOCK = 0x28
|
AF_VSOCK = 0x28
|
||||||
AF_WANPIPE = 0x19
|
AF_WANPIPE = 0x19
|
||||||
AF_X25 = 0x9
|
AF_X25 = 0x9
|
||||||
|
AF_XDP = 0x2c
|
||||||
ALG_OP_DECRYPT = 0x0
|
ALG_OP_DECRYPT = 0x0
|
||||||
ALG_OP_ENCRYPT = 0x1
|
ALG_OP_ENCRYPT = 0x1
|
||||||
ALG_SET_AEAD_ASSOCLEN = 0x4
|
ALG_SET_AEAD_ASSOCLEN = 0x4
|
||||||
|
@ -975,6 +976,21 @@ const (
|
||||||
MCL_CURRENT = 0x1
|
MCL_CURRENT = 0x1
|
||||||
MCL_FUTURE = 0x2
|
MCL_FUTURE = 0x2
|
||||||
MCL_ONFAULT = 0x4
|
MCL_ONFAULT = 0x4
|
||||||
|
MFD_ALLOW_SEALING = 0x2
|
||||||
|
MFD_CLOEXEC = 0x1
|
||||||
|
MFD_HUGETLB = 0x4
|
||||||
|
MFD_HUGE_16GB = -0x78000000
|
||||||
|
MFD_HUGE_16MB = 0x60000000
|
||||||
|
MFD_HUGE_1GB = 0x78000000
|
||||||
|
MFD_HUGE_1MB = 0x50000000
|
||||||
|
MFD_HUGE_256MB = 0x70000000
|
||||||
|
MFD_HUGE_2GB = 0x7c000000
|
||||||
|
MFD_HUGE_2MB = 0x54000000
|
||||||
|
MFD_HUGE_512KB = 0x4c000000
|
||||||
|
MFD_HUGE_64KB = 0x40000000
|
||||||
|
MFD_HUGE_8MB = 0x5c000000
|
||||||
|
MFD_HUGE_MASK = 0x3f
|
||||||
|
MFD_HUGE_SHIFT = 0x1a
|
||||||
MINIX2_SUPER_MAGIC = 0x2468
|
MINIX2_SUPER_MAGIC = 0x2468
|
||||||
MINIX2_SUPER_MAGIC2 = 0x2478
|
MINIX2_SUPER_MAGIC2 = 0x2478
|
||||||
MINIX3_SUPER_MAGIC = 0x4d5a
|
MINIX3_SUPER_MAGIC = 0x4d5a
|
||||||
|
@ -1796,6 +1812,7 @@ const (
|
||||||
SOL_TIPC = 0x10f
|
SOL_TIPC = 0x10f
|
||||||
SOL_TLS = 0x11a
|
SOL_TLS = 0x11a
|
||||||
SOL_X25 = 0x106
|
SOL_X25 = 0x106
|
||||||
|
SOL_XDP = 0x11b
|
||||||
SOMAXCONN = 0x80
|
SOMAXCONN = 0x80
|
||||||
SO_ACCEPTCONN = 0x1009
|
SO_ACCEPTCONN = 0x1009
|
||||||
SO_ATTACH_BPF = 0x32
|
SO_ATTACH_BPF = 0x32
|
||||||
|
@ -1892,6 +1909,9 @@ const (
|
||||||
STATX_TYPE = 0x1
|
STATX_TYPE = 0x1
|
||||||
STATX_UID = 0x8
|
STATX_UID = 0x8
|
||||||
STATX__RESERVED = 0x80000000
|
STATX__RESERVED = 0x80000000
|
||||||
|
SYNC_FILE_RANGE_WAIT_AFTER = 0x4
|
||||||
|
SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
|
||||||
|
SYNC_FILE_RANGE_WRITE = 0x2
|
||||||
SYSFS_MAGIC = 0x62656572
|
SYSFS_MAGIC = 0x62656572
|
||||||
S_BLKSIZE = 0x200
|
S_BLKSIZE = 0x200
|
||||||
S_IEXEC = 0x40
|
S_IEXEC = 0x40
|
||||||
|
@ -2277,6 +2297,26 @@ const (
|
||||||
XATTR_CREATE = 0x1
|
XATTR_CREATE = 0x1
|
||||||
XATTR_REPLACE = 0x2
|
XATTR_REPLACE = 0x2
|
||||||
XCASE = 0x4
|
XCASE = 0x4
|
||||||
|
XDP_COPY = 0x2
|
||||||
|
XDP_FLAGS_DRV_MODE = 0x4
|
||||||
|
XDP_FLAGS_HW_MODE = 0x8
|
||||||
|
XDP_FLAGS_MASK = 0xf
|
||||||
|
XDP_FLAGS_MODES = 0xe
|
||||||
|
XDP_FLAGS_SKB_MODE = 0x2
|
||||||
|
XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
|
||||||
|
XDP_MMAP_OFFSETS = 0x1
|
||||||
|
XDP_PGOFF_RX_RING = 0x0
|
||||||
|
XDP_PGOFF_TX_RING = 0x80000000
|
||||||
|
XDP_RX_RING = 0x2
|
||||||
|
XDP_SHARED_UMEM = 0x1
|
||||||
|
XDP_STATISTICS = 0x7
|
||||||
|
XDP_TX_RING = 0x3
|
||||||
|
XDP_UMEM_COMPLETION_RING = 0x6
|
||||||
|
XDP_UMEM_FILL_RING = 0x5
|
||||||
|
XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
|
||||||
|
XDP_UMEM_PGOFF_FILL_RING = 0x100000000
|
||||||
|
XDP_UMEM_REG = 0x4
|
||||||
|
XDP_ZEROCOPY = 0x4
|
||||||
XENFS_SUPER_MAGIC = 0xabba1974
|
XENFS_SUPER_MAGIC = 0xabba1974
|
||||||
XTABS = 0x1800
|
XTABS = 0x1800
|
||||||
ZSMALLOC_MAGIC = 0x58295829
|
ZSMALLOC_MAGIC = 0x58295829
|
||||||
|
|
40
vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
generated
vendored
40
vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
generated
vendored
|
@ -64,6 +64,7 @@ const (
|
||||||
AF_VSOCK = 0x28
|
AF_VSOCK = 0x28
|
||||||
AF_WANPIPE = 0x19
|
AF_WANPIPE = 0x19
|
||||||
AF_X25 = 0x9
|
AF_X25 = 0x9
|
||||||
|
AF_XDP = 0x2c
|
||||||
ALG_OP_DECRYPT = 0x0
|
ALG_OP_DECRYPT = 0x0
|
||||||
ALG_OP_ENCRYPT = 0x1
|
ALG_OP_ENCRYPT = 0x1
|
||||||
ALG_SET_AEAD_ASSOCLEN = 0x4
|
ALG_SET_AEAD_ASSOCLEN = 0x4
|
||||||
|
@ -975,6 +976,21 @@ const (
|
||||||
MCL_CURRENT = 0x1
|
MCL_CURRENT = 0x1
|
||||||
MCL_FUTURE = 0x2
|
MCL_FUTURE = 0x2
|
||||||
MCL_ONFAULT = 0x4
|
MCL_ONFAULT = 0x4
|
||||||
|
MFD_ALLOW_SEALING = 0x2
|
||||||
|
MFD_CLOEXEC = 0x1
|
||||||
|
MFD_HUGETLB = 0x4
|
||||||
|
MFD_HUGE_16GB = -0x78000000
|
||||||
|
MFD_HUGE_16MB = 0x60000000
|
||||||
|
MFD_HUGE_1GB = 0x78000000
|
||||||
|
MFD_HUGE_1MB = 0x50000000
|
||||||
|
MFD_HUGE_256MB = 0x70000000
|
||||||
|
MFD_HUGE_2GB = 0x7c000000
|
||||||
|
MFD_HUGE_2MB = 0x54000000
|
||||||
|
MFD_HUGE_512KB = 0x4c000000
|
||||||
|
MFD_HUGE_64KB = 0x40000000
|
||||||
|
MFD_HUGE_8MB = 0x5c000000
|
||||||
|
MFD_HUGE_MASK = 0x3f
|
||||||
|
MFD_HUGE_SHIFT = 0x1a
|
||||||
MINIX2_SUPER_MAGIC = 0x2468
|
MINIX2_SUPER_MAGIC = 0x2468
|
||||||
MINIX2_SUPER_MAGIC2 = 0x2478
|
MINIX2_SUPER_MAGIC2 = 0x2478
|
||||||
MINIX3_SUPER_MAGIC = 0x4d5a
|
MINIX3_SUPER_MAGIC = 0x4d5a
|
||||||
|
@ -1796,6 +1812,7 @@ const (
|
||||||
SOL_TIPC = 0x10f
|
SOL_TIPC = 0x10f
|
||||||
SOL_TLS = 0x11a
|
SOL_TLS = 0x11a
|
||||||
SOL_X25 = 0x106
|
SOL_X25 = 0x106
|
||||||
|
SOL_XDP = 0x11b
|
||||||
SOMAXCONN = 0x80
|
SOMAXCONN = 0x80
|
||||||
SO_ACCEPTCONN = 0x1009
|
SO_ACCEPTCONN = 0x1009
|
||||||
SO_ATTACH_BPF = 0x32
|
SO_ATTACH_BPF = 0x32
|
||||||
|
@ -1892,6 +1909,9 @@ const (
|
||||||
STATX_TYPE = 0x1
|
STATX_TYPE = 0x1
|
||||||
STATX_UID = 0x8
|
STATX_UID = 0x8
|
||||||
STATX__RESERVED = 0x80000000
|
STATX__RESERVED = 0x80000000
|
||||||
|
SYNC_FILE_RANGE_WAIT_AFTER = 0x4
|
||||||
|
SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
|
||||||
|
SYNC_FILE_RANGE_WRITE = 0x2
|
||||||
SYSFS_MAGIC = 0x62656572
|
SYSFS_MAGIC = 0x62656572
|
||||||
S_BLKSIZE = 0x200
|
S_BLKSIZE = 0x200
|
||||||
S_IEXEC = 0x40
|
S_IEXEC = 0x40
|
||||||
|
@ -2277,6 +2297,26 @@ const (
|
||||||
XATTR_CREATE = 0x1
|
XATTR_CREATE = 0x1
|
||||||
XATTR_REPLACE = 0x2
|
XATTR_REPLACE = 0x2
|
||||||
XCASE = 0x4
|
XCASE = 0x4
|
||||||
|
XDP_COPY = 0x2
|
||||||
|
XDP_FLAGS_DRV_MODE = 0x4
|
||||||
|
XDP_FLAGS_HW_MODE = 0x8
|
||||||
|
XDP_FLAGS_MASK = 0xf
|
||||||
|
XDP_FLAGS_MODES = 0xe
|
||||||
|
XDP_FLAGS_SKB_MODE = 0x2
|
||||||
|
XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
|
||||||
|
XDP_MMAP_OFFSETS = 0x1
|
||||||
|
XDP_PGOFF_RX_RING = 0x0
|
||||||
|
XDP_PGOFF_TX_RING = 0x80000000
|
||||||
|
XDP_RX_RING = 0x2
|
||||||
|
XDP_SHARED_UMEM = 0x1
|
||||||
|
XDP_STATISTICS = 0x7
|
||||||
|
XDP_TX_RING = 0x3
|
||||||
|
XDP_UMEM_COMPLETION_RING = 0x6
|
||||||
|
XDP_UMEM_FILL_RING = 0x5
|
||||||
|
XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
|
||||||
|
XDP_UMEM_PGOFF_FILL_RING = 0x100000000
|
||||||
|
XDP_UMEM_REG = 0x4
|
||||||
|
XDP_ZEROCOPY = 0x4
|
||||||
XENFS_SUPER_MAGIC = 0xabba1974
|
XENFS_SUPER_MAGIC = 0xabba1974
|
||||||
XTABS = 0x1800
|
XTABS = 0x1800
|
||||||
ZSMALLOC_MAGIC = 0x58295829
|
ZSMALLOC_MAGIC = 0x58295829
|
||||||
|
|
40
vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
generated
vendored
40
vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
generated
vendored
|
@ -64,6 +64,7 @@ const (
|
||||||
AF_VSOCK = 0x28
|
AF_VSOCK = 0x28
|
||||||
AF_WANPIPE = 0x19
|
AF_WANPIPE = 0x19
|
||||||
AF_X25 = 0x9
|
AF_X25 = 0x9
|
||||||
|
AF_XDP = 0x2c
|
||||||
ALG_OP_DECRYPT = 0x0
|
ALG_OP_DECRYPT = 0x0
|
||||||
ALG_OP_ENCRYPT = 0x1
|
ALG_OP_ENCRYPT = 0x1
|
||||||
ALG_SET_AEAD_ASSOCLEN = 0x4
|
ALG_SET_AEAD_ASSOCLEN = 0x4
|
||||||
|
@ -974,6 +975,21 @@ const (
|
||||||
MCL_CURRENT = 0x2000
|
MCL_CURRENT = 0x2000
|
||||||
MCL_FUTURE = 0x4000
|
MCL_FUTURE = 0x4000
|
||||||
MCL_ONFAULT = 0x8000
|
MCL_ONFAULT = 0x8000
|
||||||
|
MFD_ALLOW_SEALING = 0x2
|
||||||
|
MFD_CLOEXEC = 0x1
|
||||||
|
MFD_HUGETLB = 0x4
|
||||||
|
MFD_HUGE_16GB = -0x78000000
|
||||||
|
MFD_HUGE_16MB = 0x60000000
|
||||||
|
MFD_HUGE_1GB = 0x78000000
|
||||||
|
MFD_HUGE_1MB = 0x50000000
|
||||||
|
MFD_HUGE_256MB = 0x70000000
|
||||||
|
MFD_HUGE_2GB = 0x7c000000
|
||||||
|
MFD_HUGE_2MB = 0x54000000
|
||||||
|
MFD_HUGE_512KB = 0x4c000000
|
||||||
|
MFD_HUGE_64KB = 0x40000000
|
||||||
|
MFD_HUGE_8MB = 0x5c000000
|
||||||
|
MFD_HUGE_MASK = 0x3f
|
||||||
|
MFD_HUGE_SHIFT = 0x1a
|
||||||
MINIX2_SUPER_MAGIC = 0x2468
|
MINIX2_SUPER_MAGIC = 0x2468
|
||||||
MINIX2_SUPER_MAGIC2 = 0x2478
|
MINIX2_SUPER_MAGIC2 = 0x2478
|
||||||
MINIX3_SUPER_MAGIC = 0x4d5a
|
MINIX3_SUPER_MAGIC = 0x4d5a
|
||||||
|
@ -1852,6 +1868,7 @@ const (
|
||||||
SOL_TIPC = 0x10f
|
SOL_TIPC = 0x10f
|
||||||
SOL_TLS = 0x11a
|
SOL_TLS = 0x11a
|
||||||
SOL_X25 = 0x106
|
SOL_X25 = 0x106
|
||||||
|
SOL_XDP = 0x11b
|
||||||
SOMAXCONN = 0x80
|
SOMAXCONN = 0x80
|
||||||
SO_ACCEPTCONN = 0x1e
|
SO_ACCEPTCONN = 0x1e
|
||||||
SO_ATTACH_BPF = 0x32
|
SO_ATTACH_BPF = 0x32
|
||||||
|
@ -1947,6 +1964,9 @@ const (
|
||||||
STATX_TYPE = 0x1
|
STATX_TYPE = 0x1
|
||||||
STATX_UID = 0x8
|
STATX_UID = 0x8
|
||||||
STATX__RESERVED = 0x80000000
|
STATX__RESERVED = 0x80000000
|
||||||
|
SYNC_FILE_RANGE_WAIT_AFTER = 0x4
|
||||||
|
SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
|
||||||
|
SYNC_FILE_RANGE_WRITE = 0x2
|
||||||
SYSFS_MAGIC = 0x62656572
|
SYSFS_MAGIC = 0x62656572
|
||||||
S_BLKSIZE = 0x200
|
S_BLKSIZE = 0x200
|
||||||
S_IEXEC = 0x40
|
S_IEXEC = 0x40
|
||||||
|
@ -2334,6 +2354,26 @@ const (
|
||||||
XATTR_CREATE = 0x1
|
XATTR_CREATE = 0x1
|
||||||
XATTR_REPLACE = 0x2
|
XATTR_REPLACE = 0x2
|
||||||
XCASE = 0x4000
|
XCASE = 0x4000
|
||||||
|
XDP_COPY = 0x2
|
||||||
|
XDP_FLAGS_DRV_MODE = 0x4
|
||||||
|
XDP_FLAGS_HW_MODE = 0x8
|
||||||
|
XDP_FLAGS_MASK = 0xf
|
||||||
|
XDP_FLAGS_MODES = 0xe
|
||||||
|
XDP_FLAGS_SKB_MODE = 0x2
|
||||||
|
XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
|
||||||
|
XDP_MMAP_OFFSETS = 0x1
|
||||||
|
XDP_PGOFF_RX_RING = 0x0
|
||||||
|
XDP_PGOFF_TX_RING = 0x80000000
|
||||||
|
XDP_RX_RING = 0x2
|
||||||
|
XDP_SHARED_UMEM = 0x1
|
||||||
|
XDP_STATISTICS = 0x7
|
||||||
|
XDP_TX_RING = 0x3
|
||||||
|
XDP_UMEM_COMPLETION_RING = 0x6
|
||||||
|
XDP_UMEM_FILL_RING = 0x5
|
||||||
|
XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
|
||||||
|
XDP_UMEM_PGOFF_FILL_RING = 0x100000000
|
||||||
|
XDP_UMEM_REG = 0x4
|
||||||
|
XDP_ZEROCOPY = 0x4
|
||||||
XENFS_SUPER_MAGIC = 0xabba1974
|
XENFS_SUPER_MAGIC = 0xabba1974
|
||||||
XTABS = 0xc00
|
XTABS = 0xc00
|
||||||
ZSMALLOC_MAGIC = 0x58295829
|
ZSMALLOC_MAGIC = 0x58295829
|
||||||
|
|
40
vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
generated
vendored
40
vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
generated
vendored
|
@ -64,6 +64,7 @@ const (
|
||||||
AF_VSOCK = 0x28
|
AF_VSOCK = 0x28
|
||||||
AF_WANPIPE = 0x19
|
AF_WANPIPE = 0x19
|
||||||
AF_X25 = 0x9
|
AF_X25 = 0x9
|
||||||
|
AF_XDP = 0x2c
|
||||||
ALG_OP_DECRYPT = 0x0
|
ALG_OP_DECRYPT = 0x0
|
||||||
ALG_OP_ENCRYPT = 0x1
|
ALG_OP_ENCRYPT = 0x1
|
||||||
ALG_SET_AEAD_ASSOCLEN = 0x4
|
ALG_SET_AEAD_ASSOCLEN = 0x4
|
||||||
|
@ -974,6 +975,21 @@ const (
|
||||||
MCL_CURRENT = 0x2000
|
MCL_CURRENT = 0x2000
|
||||||
MCL_FUTURE = 0x4000
|
MCL_FUTURE = 0x4000
|
||||||
MCL_ONFAULT = 0x8000
|
MCL_ONFAULT = 0x8000
|
||||||
|
MFD_ALLOW_SEALING = 0x2
|
||||||
|
MFD_CLOEXEC = 0x1
|
||||||
|
MFD_HUGETLB = 0x4
|
||||||
|
MFD_HUGE_16GB = -0x78000000
|
||||||
|
MFD_HUGE_16MB = 0x60000000
|
||||||
|
MFD_HUGE_1GB = 0x78000000
|
||||||
|
MFD_HUGE_1MB = 0x50000000
|
||||||
|
MFD_HUGE_256MB = 0x70000000
|
||||||
|
MFD_HUGE_2GB = 0x7c000000
|
||||||
|
MFD_HUGE_2MB = 0x54000000
|
||||||
|
MFD_HUGE_512KB = 0x4c000000
|
||||||
|
MFD_HUGE_64KB = 0x40000000
|
||||||
|
MFD_HUGE_8MB = 0x5c000000
|
||||||
|
MFD_HUGE_MASK = 0x3f
|
||||||
|
MFD_HUGE_SHIFT = 0x1a
|
||||||
MINIX2_SUPER_MAGIC = 0x2468
|
MINIX2_SUPER_MAGIC = 0x2468
|
||||||
MINIX2_SUPER_MAGIC2 = 0x2478
|
MINIX2_SUPER_MAGIC2 = 0x2478
|
||||||
MINIX3_SUPER_MAGIC = 0x4d5a
|
MINIX3_SUPER_MAGIC = 0x4d5a
|
||||||
|
@ -1852,6 +1868,7 @@ const (
|
||||||
SOL_TIPC = 0x10f
|
SOL_TIPC = 0x10f
|
||||||
SOL_TLS = 0x11a
|
SOL_TLS = 0x11a
|
||||||
SOL_X25 = 0x106
|
SOL_X25 = 0x106
|
||||||
|
SOL_XDP = 0x11b
|
||||||
SOMAXCONN = 0x80
|
SOMAXCONN = 0x80
|
||||||
SO_ACCEPTCONN = 0x1e
|
SO_ACCEPTCONN = 0x1e
|
||||||
SO_ATTACH_BPF = 0x32
|
SO_ATTACH_BPF = 0x32
|
||||||
|
@ -1947,6 +1964,9 @@ const (
|
||||||
STATX_TYPE = 0x1
|
STATX_TYPE = 0x1
|
||||||
STATX_UID = 0x8
|
STATX_UID = 0x8
|
||||||
STATX__RESERVED = 0x80000000
|
STATX__RESERVED = 0x80000000
|
||||||
|
SYNC_FILE_RANGE_WAIT_AFTER = 0x4
|
||||||
|
SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
|
||||||
|
SYNC_FILE_RANGE_WRITE = 0x2
|
||||||
SYSFS_MAGIC = 0x62656572
|
SYSFS_MAGIC = 0x62656572
|
||||||
S_BLKSIZE = 0x200
|
S_BLKSIZE = 0x200
|
||||||
S_IEXEC = 0x40
|
S_IEXEC = 0x40
|
||||||
|
@ -2334,6 +2354,26 @@ const (
|
||||||
XATTR_CREATE = 0x1
|
XATTR_CREATE = 0x1
|
||||||
XATTR_REPLACE = 0x2
|
XATTR_REPLACE = 0x2
|
||||||
XCASE = 0x4000
|
XCASE = 0x4000
|
||||||
|
XDP_COPY = 0x2
|
||||||
|
XDP_FLAGS_DRV_MODE = 0x4
|
||||||
|
XDP_FLAGS_HW_MODE = 0x8
|
||||||
|
XDP_FLAGS_MASK = 0xf
|
||||||
|
XDP_FLAGS_MODES = 0xe
|
||||||
|
XDP_FLAGS_SKB_MODE = 0x2
|
||||||
|
XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
|
||||||
|
XDP_MMAP_OFFSETS = 0x1
|
||||||
|
XDP_PGOFF_RX_RING = 0x0
|
||||||
|
XDP_PGOFF_TX_RING = 0x80000000
|
||||||
|
XDP_RX_RING = 0x2
|
||||||
|
XDP_SHARED_UMEM = 0x1
|
||||||
|
XDP_STATISTICS = 0x7
|
||||||
|
XDP_TX_RING = 0x3
|
||||||
|
XDP_UMEM_COMPLETION_RING = 0x6
|
||||||
|
XDP_UMEM_FILL_RING = 0x5
|
||||||
|
XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
|
||||||
|
XDP_UMEM_PGOFF_FILL_RING = 0x100000000
|
||||||
|
XDP_UMEM_REG = 0x4
|
||||||
|
XDP_ZEROCOPY = 0x4
|
||||||
XENFS_SUPER_MAGIC = 0xabba1974
|
XENFS_SUPER_MAGIC = 0xabba1974
|
||||||
XTABS = 0xc00
|
XTABS = 0xc00
|
||||||
ZSMALLOC_MAGIC = 0x58295829
|
ZSMALLOC_MAGIC = 0x58295829
|
||||||
|
|
2662
vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
generated
vendored
Normal file
2662
vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
40
vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
generated
vendored
40
vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
generated
vendored
|
@ -64,6 +64,7 @@ const (
|
||||||
AF_VSOCK = 0x28
|
AF_VSOCK = 0x28
|
||||||
AF_WANPIPE = 0x19
|
AF_WANPIPE = 0x19
|
||||||
AF_X25 = 0x9
|
AF_X25 = 0x9
|
||||||
|
AF_XDP = 0x2c
|
||||||
ALG_OP_DECRYPT = 0x0
|
ALG_OP_DECRYPT = 0x0
|
||||||
ALG_OP_ENCRYPT = 0x1
|
ALG_OP_ENCRYPT = 0x1
|
||||||
ALG_SET_AEAD_ASSOCLEN = 0x4
|
ALG_SET_AEAD_ASSOCLEN = 0x4
|
||||||
|
@ -975,6 +976,21 @@ const (
|
||||||
MCL_CURRENT = 0x1
|
MCL_CURRENT = 0x1
|
||||||
MCL_FUTURE = 0x2
|
MCL_FUTURE = 0x2
|
||||||
MCL_ONFAULT = 0x4
|
MCL_ONFAULT = 0x4
|
||||||
|
MFD_ALLOW_SEALING = 0x2
|
||||||
|
MFD_CLOEXEC = 0x1
|
||||||
|
MFD_HUGETLB = 0x4
|
||||||
|
MFD_HUGE_16GB = -0x78000000
|
||||||
|
MFD_HUGE_16MB = 0x60000000
|
||||||
|
MFD_HUGE_1GB = 0x78000000
|
||||||
|
MFD_HUGE_1MB = 0x50000000
|
||||||
|
MFD_HUGE_256MB = 0x70000000
|
||||||
|
MFD_HUGE_2GB = 0x7c000000
|
||||||
|
MFD_HUGE_2MB = 0x54000000
|
||||||
|
MFD_HUGE_512KB = 0x4c000000
|
||||||
|
MFD_HUGE_64KB = 0x40000000
|
||||||
|
MFD_HUGE_8MB = 0x5c000000
|
||||||
|
MFD_HUGE_MASK = 0x3f
|
||||||
|
MFD_HUGE_SHIFT = 0x1a
|
||||||
MINIX2_SUPER_MAGIC = 0x2468
|
MINIX2_SUPER_MAGIC = 0x2468
|
||||||
MINIX2_SUPER_MAGIC2 = 0x2478
|
MINIX2_SUPER_MAGIC2 = 0x2478
|
||||||
MINIX3_SUPER_MAGIC = 0x4d5a
|
MINIX3_SUPER_MAGIC = 0x4d5a
|
||||||
|
@ -1857,6 +1873,7 @@ const (
|
||||||
SOL_TIPC = 0x10f
|
SOL_TIPC = 0x10f
|
||||||
SOL_TLS = 0x11a
|
SOL_TLS = 0x11a
|
||||||
SOL_X25 = 0x106
|
SOL_X25 = 0x106
|
||||||
|
SOL_XDP = 0x11b
|
||||||
SOMAXCONN = 0x80
|
SOMAXCONN = 0x80
|
||||||
SO_ACCEPTCONN = 0x1e
|
SO_ACCEPTCONN = 0x1e
|
||||||
SO_ATTACH_BPF = 0x32
|
SO_ATTACH_BPF = 0x32
|
||||||
|
@ -1952,6 +1969,9 @@ const (
|
||||||
STATX_TYPE = 0x1
|
STATX_TYPE = 0x1
|
||||||
STATX_UID = 0x8
|
STATX_UID = 0x8
|
||||||
STATX__RESERVED = 0x80000000
|
STATX__RESERVED = 0x80000000
|
||||||
|
SYNC_FILE_RANGE_WAIT_AFTER = 0x4
|
||||||
|
SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
|
||||||
|
SYNC_FILE_RANGE_WRITE = 0x2
|
||||||
SYSFS_MAGIC = 0x62656572
|
SYSFS_MAGIC = 0x62656572
|
||||||
S_BLKSIZE = 0x200
|
S_BLKSIZE = 0x200
|
||||||
S_IEXEC = 0x40
|
S_IEXEC = 0x40
|
||||||
|
@ -2335,6 +2355,26 @@ const (
|
||||||
XATTR_CREATE = 0x1
|
XATTR_CREATE = 0x1
|
||||||
XATTR_REPLACE = 0x2
|
XATTR_REPLACE = 0x2
|
||||||
XCASE = 0x4
|
XCASE = 0x4
|
||||||
|
XDP_COPY = 0x2
|
||||||
|
XDP_FLAGS_DRV_MODE = 0x4
|
||||||
|
XDP_FLAGS_HW_MODE = 0x8
|
||||||
|
XDP_FLAGS_MASK = 0xf
|
||||||
|
XDP_FLAGS_MODES = 0xe
|
||||||
|
XDP_FLAGS_SKB_MODE = 0x2
|
||||||
|
XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
|
||||||
|
XDP_MMAP_OFFSETS = 0x1
|
||||||
|
XDP_PGOFF_RX_RING = 0x0
|
||||||
|
XDP_PGOFF_TX_RING = 0x80000000
|
||||||
|
XDP_RX_RING = 0x2
|
||||||
|
XDP_SHARED_UMEM = 0x1
|
||||||
|
XDP_STATISTICS = 0x7
|
||||||
|
XDP_TX_RING = 0x3
|
||||||
|
XDP_UMEM_COMPLETION_RING = 0x6
|
||||||
|
XDP_UMEM_FILL_RING = 0x5
|
||||||
|
XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
|
||||||
|
XDP_UMEM_PGOFF_FILL_RING = 0x100000000
|
||||||
|
XDP_UMEM_REG = 0x4
|
||||||
|
XDP_ZEROCOPY = 0x4
|
||||||
XENFS_SUPER_MAGIC = 0xabba1974
|
XENFS_SUPER_MAGIC = 0xabba1974
|
||||||
XTABS = 0x1800
|
XTABS = 0x1800
|
||||||
ZSMALLOC_MAGIC = 0x58295829
|
ZSMALLOC_MAGIC = 0x58295829
|
||||||
|
|
24
vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go
generated
vendored
24
vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go
generated
vendored
|
@ -39,8 +39,10 @@ int getrusage(int, uintptr_t);
|
||||||
int getsid(int);
|
int getsid(int);
|
||||||
int kill(int, int);
|
int kill(int, int);
|
||||||
int syslog(int, uintptr_t, size_t);
|
int syslog(int, uintptr_t, size_t);
|
||||||
|
int mkdir(int, uintptr_t, unsigned int);
|
||||||
int mkdirat(int, uintptr_t, unsigned int);
|
int mkdirat(int, uintptr_t, unsigned int);
|
||||||
int mkfifo(uintptr_t, unsigned int);
|
int mkfifo(uintptr_t, unsigned int);
|
||||||
|
int mknod(uintptr_t, unsigned int, int);
|
||||||
int mknodat(int, uintptr_t, unsigned int, int);
|
int mknodat(int, uintptr_t, unsigned int, int);
|
||||||
int nanosleep(uintptr_t, uintptr_t);
|
int nanosleep(uintptr_t, uintptr_t);
|
||||||
int open64(uintptr_t, int, unsigned int);
|
int open64(uintptr_t, int, unsigned int);
|
||||||
|
@ -502,6 +504,17 @@ func Klogctl(typ int, buf []byte) (n int, err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func Mkdir(dirfd int, path string, mode uint32) (err error) {
|
||||||
|
_p0 := uintptr(unsafe.Pointer(C.CString(path)))
|
||||||
|
r0, er := C.mkdir(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode))
|
||||||
|
if r0 == -1 && er != nil {
|
||||||
|
err = er
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
||||||
_p0 := uintptr(unsafe.Pointer(C.CString(path)))
|
_p0 := uintptr(unsafe.Pointer(C.CString(path)))
|
||||||
r0, er := C.mkdirat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode))
|
r0, er := C.mkdirat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode))
|
||||||
|
@ -524,6 +537,17 @@ func Mkfifo(path string, mode uint32) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func Mknod(path string, mode uint32, dev int) (err error) {
|
||||||
|
_p0 := uintptr(unsafe.Pointer(C.CString(path)))
|
||||||
|
r0, er := C.mknod(C.uintptr_t(_p0), C.uint(mode), C.int(dev))
|
||||||
|
if r0 == -1 && er != nil {
|
||||||
|
err = er
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
|
func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
|
||||||
_p0 := uintptr(unsafe.Pointer(C.CString(path)))
|
_p0 := uintptr(unsafe.Pointer(C.CString(path)))
|
||||||
r0, er := C.mknodat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode), C.int(dev))
|
r0, er := C.mknodat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode), C.int(dev))
|
||||||
|
|
24
vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go
generated
vendored
24
vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go
generated
vendored
|
@ -39,8 +39,10 @@ int getrusage(int, uintptr_t);
|
||||||
int getsid(int);
|
int getsid(int);
|
||||||
int kill(int, int);
|
int kill(int, int);
|
||||||
int syslog(int, uintptr_t, size_t);
|
int syslog(int, uintptr_t, size_t);
|
||||||
|
int mkdir(int, uintptr_t, unsigned int);
|
||||||
int mkdirat(int, uintptr_t, unsigned int);
|
int mkdirat(int, uintptr_t, unsigned int);
|
||||||
int mkfifo(uintptr_t, unsigned int);
|
int mkfifo(uintptr_t, unsigned int);
|
||||||
|
int mknod(uintptr_t, unsigned int, int);
|
||||||
int mknodat(int, uintptr_t, unsigned int, int);
|
int mknodat(int, uintptr_t, unsigned int, int);
|
||||||
int nanosleep(uintptr_t, uintptr_t);
|
int nanosleep(uintptr_t, uintptr_t);
|
||||||
int open64(uintptr_t, int, unsigned int);
|
int open64(uintptr_t, int, unsigned int);
|
||||||
|
@ -502,6 +504,17 @@ func Klogctl(typ int, buf []byte) (n int, err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func Mkdir(dirfd int, path string, mode uint32) (err error) {
|
||||||
|
_p0 := uintptr(unsafe.Pointer(C.CString(path)))
|
||||||
|
r0, er := C.mkdir(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode))
|
||||||
|
if r0 == -1 && er != nil {
|
||||||
|
err = er
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
||||||
_p0 := uintptr(unsafe.Pointer(C.CString(path)))
|
_p0 := uintptr(unsafe.Pointer(C.CString(path)))
|
||||||
r0, er := C.mkdirat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode))
|
r0, er := C.mkdirat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode))
|
||||||
|
@ -524,6 +537,17 @@ func Mkfifo(path string, mode uint32) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func Mknod(path string, mode uint32, dev int) (err error) {
|
||||||
|
_p0 := uintptr(unsafe.Pointer(C.CString(path)))
|
||||||
|
r0, er := C.mknod(C.uintptr_t(_p0), C.uint(mode), C.int(dev))
|
||||||
|
if r0 == -1 && er != nil {
|
||||||
|
err = er
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
|
func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
|
||||||
_p0 := uintptr(unsafe.Pointer(C.CString(path)))
|
_p0 := uintptr(unsafe.Pointer(C.CString(path)))
|
||||||
r0, er := C.mknodat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode), C.int(dev))
|
r0, er := C.mknodat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode), C.int(dev))
|
||||||
|
|
16
vendor/golang.org/x/sys/unix/zsyscall_linux_386.go
generated
vendored
16
vendor/golang.org/x/sys/unix/zsyscall_linux_386.go
generated
vendored
|
@ -979,6 +979,22 @@ func Lsetxattr(path string, attr string, data []byte, flags int) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func MemfdCreate(name string, flags int) (fd int, err error) {
|
||||||
|
var _p0 *byte
|
||||||
|
_p0, err = BytePtrFromString(name)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
r0, _, e1 := Syscall(SYS_MEMFD_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)
|
||||||
|
fd = int(r0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
_p0, err = BytePtrFromString(path)
|
_p0, err = BytePtrFromString(path)
|
||||||
|
|
16
vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go
generated
vendored
16
vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go
generated
vendored
|
@ -979,6 +979,22 @@ func Lsetxattr(path string, attr string, data []byte, flags int) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func MemfdCreate(name string, flags int) (fd int, err error) {
|
||||||
|
var _p0 *byte
|
||||||
|
_p0, err = BytePtrFromString(name)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
r0, _, e1 := Syscall(SYS_MEMFD_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)
|
||||||
|
fd = int(r0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
_p0, err = BytePtrFromString(path)
|
_p0, err = BytePtrFromString(path)
|
||||||
|
|
16
vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go
generated
vendored
16
vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go
generated
vendored
|
@ -979,6 +979,22 @@ func Lsetxattr(path string, attr string, data []byte, flags int) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func MemfdCreate(name string, flags int) (fd int, err error) {
|
||||||
|
var _p0 *byte
|
||||||
|
_p0, err = BytePtrFromString(name)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
r0, _, e1 := Syscall(SYS_MEMFD_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)
|
||||||
|
fd = int(r0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
_p0, err = BytePtrFromString(path)
|
_p0, err = BytePtrFromString(path)
|
||||||
|
|
16
vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go
generated
vendored
16
vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go
generated
vendored
|
@ -979,6 +979,22 @@ func Lsetxattr(path string, attr string, data []byte, flags int) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func MemfdCreate(name string, flags int) (fd int, err error) {
|
||||||
|
var _p0 *byte
|
||||||
|
_p0, err = BytePtrFromString(name)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
r0, _, e1 := Syscall(SYS_MEMFD_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)
|
||||||
|
fd = int(r0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
_p0, err = BytePtrFromString(path)
|
_p0, err = BytePtrFromString(path)
|
||||||
|
|
16
vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go
generated
vendored
16
vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go
generated
vendored
|
@ -979,6 +979,22 @@ func Lsetxattr(path string, attr string, data []byte, flags int) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func MemfdCreate(name string, flags int) (fd int, err error) {
|
||||||
|
var _p0 *byte
|
||||||
|
_p0, err = BytePtrFromString(name)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
r0, _, e1 := Syscall(SYS_MEMFD_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)
|
||||||
|
fd = int(r0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
_p0, err = BytePtrFromString(path)
|
_p0, err = BytePtrFromString(path)
|
||||||
|
|
16
vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go
generated
vendored
16
vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go
generated
vendored
|
@ -979,6 +979,22 @@ func Lsetxattr(path string, attr string, data []byte, flags int) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func MemfdCreate(name string, flags int) (fd int, err error) {
|
||||||
|
var _p0 *byte
|
||||||
|
_p0, err = BytePtrFromString(name)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
r0, _, e1 := Syscall(SYS_MEMFD_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)
|
||||||
|
fd = int(r0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
_p0, err = BytePtrFromString(path)
|
_p0, err = BytePtrFromString(path)
|
||||||
|
|
16
vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go
generated
vendored
16
vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go
generated
vendored
|
@ -979,6 +979,22 @@ func Lsetxattr(path string, attr string, data []byte, flags int) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func MemfdCreate(name string, flags int) (fd int, err error) {
|
||||||
|
var _p0 *byte
|
||||||
|
_p0, err = BytePtrFromString(name)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
r0, _, e1 := Syscall(SYS_MEMFD_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)
|
||||||
|
fd = int(r0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
_p0, err = BytePtrFromString(path)
|
_p0, err = BytePtrFromString(path)
|
||||||
|
|
16
vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go
generated
vendored
16
vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go
generated
vendored
|
@ -979,6 +979,22 @@ func Lsetxattr(path string, attr string, data []byte, flags int) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func MemfdCreate(name string, flags int) (fd int, err error) {
|
||||||
|
var _p0 *byte
|
||||||
|
_p0, err = BytePtrFromString(name)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
r0, _, e1 := Syscall(SYS_MEMFD_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)
|
||||||
|
fd = int(r0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
_p0, err = BytePtrFromString(path)
|
_p0, err = BytePtrFromString(path)
|
||||||
|
|
36
vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go
generated
vendored
36
vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go
generated
vendored
|
@ -979,6 +979,22 @@ func Lsetxattr(path string, attr string, data []byte, flags int) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func MemfdCreate(name string, flags int) (fd int, err error) {
|
||||||
|
var _p0 *byte
|
||||||
|
_p0, err = BytePtrFromString(name)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
r0, _, e1 := Syscall(SYS_MEMFD_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)
|
||||||
|
fd = int(r0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
_p0, err = BytePtrFromString(path)
|
_p0, err = BytePtrFromString(path)
|
||||||
|
@ -1998,16 +2014,6 @@ func Statfs(path string, buf *Statfs_t) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func SyncFileRange(fd int, off int64, n int64, flags int) (err error) {
|
|
||||||
_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE2, uintptr(fd), uintptr(off), uintptr(n), uintptr(flags), 0, 0)
|
|
||||||
if e1 != 0 {
|
|
||||||
err = errnoErr(e1)
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
|
||||||
|
|
||||||
func Truncate(path string, length int64) (err error) {
|
func Truncate(path string, length int64) (err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
_p0, err = BytePtrFromString(path)
|
_p0, err = BytePtrFromString(path)
|
||||||
|
@ -2317,3 +2323,13 @@ func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func syncFileRange2(fd int, flags int, off int64, n int64) (err error) {
|
||||||
|
_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE2, uintptr(fd), uintptr(flags), uintptr(off), uintptr(n), 0, 0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
36
vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go
generated
vendored
36
vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go
generated
vendored
|
@ -979,6 +979,22 @@ func Lsetxattr(path string, attr string, data []byte, flags int) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func MemfdCreate(name string, flags int) (fd int, err error) {
|
||||||
|
var _p0 *byte
|
||||||
|
_p0, err = BytePtrFromString(name)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
r0, _, e1 := Syscall(SYS_MEMFD_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)
|
||||||
|
fd = int(r0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
_p0, err = BytePtrFromString(path)
|
_p0, err = BytePtrFromString(path)
|
||||||
|
@ -1998,16 +2014,6 @@ func Statfs(path string, buf *Statfs_t) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func SyncFileRange(fd int, off int64, n int64, flags int) (err error) {
|
|
||||||
_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE2, uintptr(fd), uintptr(off), uintptr(n), uintptr(flags), 0, 0)
|
|
||||||
if e1 != 0 {
|
|
||||||
err = errnoErr(e1)
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
|
||||||
|
|
||||||
func Truncate(path string, length int64) (err error) {
|
func Truncate(path string, length int64) (err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
_p0, err = BytePtrFromString(path)
|
_p0, err = BytePtrFromString(path)
|
||||||
|
@ -2317,3 +2323,13 @@ func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func syncFileRange2(fd int, flags int, off int64, n int64) (err error) {
|
||||||
|
_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE2, uintptr(fd), uintptr(flags), uintptr(off), uintptr(n), 0, 0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
2130
vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go
generated
vendored
Normal file
2130
vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
16
vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go
generated
vendored
16
vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go
generated
vendored
|
@ -979,6 +979,22 @@ func Lsetxattr(path string, attr string, data []byte, flags int) (err error) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func MemfdCreate(name string, flags int) (fd int, err error) {
|
||||||
|
var _p0 *byte
|
||||||
|
_p0, err = BytePtrFromString(name)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
r0, _, e1 := Syscall(SYS_MEMFD_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)
|
||||||
|
fd = int(r0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
func Mkdirat(dirfd int, path string, mode uint32) (err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
_p0, err = BytePtrFromString(path)
|
_p0, err = BytePtrFromString(path)
|
||||||
|
|
286
vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go
generated
vendored
Normal file
286
vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go
generated
vendored
Normal file
|
@ -0,0 +1,286 @@
|
||||||
|
// linux/mksysnum.pl -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h
|
||||||
|
// Code generated by the command above; see README.md. DO NOT EDIT.
|
||||||
|
|
||||||
|
// +build riscv64,linux
|
||||||
|
|
||||||
|
package unix
|
||||||
|
|
||||||
|
const (
|
||||||
|
SYS_IO_SETUP = 0
|
||||||
|
SYS_IO_DESTROY = 1
|
||||||
|
SYS_IO_SUBMIT = 2
|
||||||
|
SYS_IO_CANCEL = 3
|
||||||
|
SYS_IO_GETEVENTS = 4
|
||||||
|
SYS_SETXATTR = 5
|
||||||
|
SYS_LSETXATTR = 6
|
||||||
|
SYS_FSETXATTR = 7
|
||||||
|
SYS_GETXATTR = 8
|
||||||
|
SYS_LGETXATTR = 9
|
||||||
|
SYS_FGETXATTR = 10
|
||||||
|
SYS_LISTXATTR = 11
|
||||||
|
SYS_LLISTXATTR = 12
|
||||||
|
SYS_FLISTXATTR = 13
|
||||||
|
SYS_REMOVEXATTR = 14
|
||||||
|
SYS_LREMOVEXATTR = 15
|
||||||
|
SYS_FREMOVEXATTR = 16
|
||||||
|
SYS_GETCWD = 17
|
||||||
|
SYS_LOOKUP_DCOOKIE = 18
|
||||||
|
SYS_EVENTFD2 = 19
|
||||||
|
SYS_EPOLL_CREATE1 = 20
|
||||||
|
SYS_EPOLL_CTL = 21
|
||||||
|
SYS_EPOLL_PWAIT = 22
|
||||||
|
SYS_DUP = 23
|
||||||
|
SYS_DUP3 = 24
|
||||||
|
SYS_FCNTL = 25
|
||||||
|
SYS_INOTIFY_INIT1 = 26
|
||||||
|
SYS_INOTIFY_ADD_WATCH = 27
|
||||||
|
SYS_INOTIFY_RM_WATCH = 28
|
||||||
|
SYS_IOCTL = 29
|
||||||
|
SYS_IOPRIO_SET = 30
|
||||||
|
SYS_IOPRIO_GET = 31
|
||||||
|
SYS_FLOCK = 32
|
||||||
|
SYS_MKNODAT = 33
|
||||||
|
SYS_MKDIRAT = 34
|
||||||
|
SYS_UNLINKAT = 35
|
||||||
|
SYS_SYMLINKAT = 36
|
||||||
|
SYS_LINKAT = 37
|
||||||
|
SYS_UMOUNT2 = 39
|
||||||
|
SYS_MOUNT = 40
|
||||||
|
SYS_PIVOT_ROOT = 41
|
||||||
|
SYS_NFSSERVCTL = 42
|
||||||
|
SYS_STATFS = 43
|
||||||
|
SYS_FSTATFS = 44
|
||||||
|
SYS_TRUNCATE = 45
|
||||||
|
SYS_FTRUNCATE = 46
|
||||||
|
SYS_FALLOCATE = 47
|
||||||
|
SYS_FACCESSAT = 48
|
||||||
|
SYS_CHDIR = 49
|
||||||
|
SYS_FCHDIR = 50
|
||||||
|
SYS_CHROOT = 51
|
||||||
|
SYS_FCHMOD = 52
|
||||||
|
SYS_FCHMODAT = 53
|
||||||
|
SYS_FCHOWNAT = 54
|
||||||
|
SYS_FCHOWN = 55
|
||||||
|
SYS_OPENAT = 56
|
||||||
|
SYS_CLOSE = 57
|
||||||
|
SYS_VHANGUP = 58
|
||||||
|
SYS_PIPE2 = 59
|
||||||
|
SYS_QUOTACTL = 60
|
||||||
|
SYS_GETDENTS64 = 61
|
||||||
|
SYS_LSEEK = 62
|
||||||
|
SYS_READ = 63
|
||||||
|
SYS_WRITE = 64
|
||||||
|
SYS_READV = 65
|
||||||
|
SYS_WRITEV = 66
|
||||||
|
SYS_PREAD64 = 67
|
||||||
|
SYS_PWRITE64 = 68
|
||||||
|
SYS_PREADV = 69
|
||||||
|
SYS_PWRITEV = 70
|
||||||
|
SYS_SENDFILE = 71
|
||||||
|
SYS_PSELECT6 = 72
|
||||||
|
SYS_PPOLL = 73
|
||||||
|
SYS_SIGNALFD4 = 74
|
||||||
|
SYS_VMSPLICE = 75
|
||||||
|
SYS_SPLICE = 76
|
||||||
|
SYS_TEE = 77
|
||||||
|
SYS_READLINKAT = 78
|
||||||
|
SYS_FSTATAT = 79
|
||||||
|
SYS_FSTAT = 80
|
||||||
|
SYS_SYNC = 81
|
||||||
|
SYS_FSYNC = 82
|
||||||
|
SYS_FDATASYNC = 83
|
||||||
|
SYS_SYNC_FILE_RANGE = 84
|
||||||
|
SYS_TIMERFD_CREATE = 85
|
||||||
|
SYS_TIMERFD_SETTIME = 86
|
||||||
|
SYS_TIMERFD_GETTIME = 87
|
||||||
|
SYS_UTIMENSAT = 88
|
||||||
|
SYS_ACCT = 89
|
||||||
|
SYS_CAPGET = 90
|
||||||
|
SYS_CAPSET = 91
|
||||||
|
SYS_PERSONALITY = 92
|
||||||
|
SYS_EXIT = 93
|
||||||
|
SYS_EXIT_GROUP = 94
|
||||||
|
SYS_WAITID = 95
|
||||||
|
SYS_SET_TID_ADDRESS = 96
|
||||||
|
SYS_UNSHARE = 97
|
||||||
|
SYS_FUTEX = 98
|
||||||
|
SYS_SET_ROBUST_LIST = 99
|
||||||
|
SYS_GET_ROBUST_LIST = 100
|
||||||
|
SYS_NANOSLEEP = 101
|
||||||
|
SYS_GETITIMER = 102
|
||||||
|
SYS_SETITIMER = 103
|
||||||
|
SYS_KEXEC_LOAD = 104
|
||||||
|
SYS_INIT_MODULE = 105
|
||||||
|
SYS_DELETE_MODULE = 106
|
||||||
|
SYS_TIMER_CREATE = 107
|
||||||
|
SYS_TIMER_GETTIME = 108
|
||||||
|
SYS_TIMER_GETOVERRUN = 109
|
||||||
|
SYS_TIMER_SETTIME = 110
|
||||||
|
SYS_TIMER_DELETE = 111
|
||||||
|
SYS_CLOCK_SETTIME = 112
|
||||||
|
SYS_CLOCK_GETTIME = 113
|
||||||
|
SYS_CLOCK_GETRES = 114
|
||||||
|
SYS_CLOCK_NANOSLEEP = 115
|
||||||
|
SYS_SYSLOG = 116
|
||||||
|
SYS_PTRACE = 117
|
||||||
|
SYS_SCHED_SETPARAM = 118
|
||||||
|
SYS_SCHED_SETSCHEDULER = 119
|
||||||
|
SYS_SCHED_GETSCHEDULER = 120
|
||||||
|
SYS_SCHED_GETPARAM = 121
|
||||||
|
SYS_SCHED_SETAFFINITY = 122
|
||||||
|
SYS_SCHED_GETAFFINITY = 123
|
||||||
|
SYS_SCHED_YIELD = 124
|
||||||
|
SYS_SCHED_GET_PRIORITY_MAX = 125
|
||||||
|
SYS_SCHED_GET_PRIORITY_MIN = 126
|
||||||
|
SYS_SCHED_RR_GET_INTERVAL = 127
|
||||||
|
SYS_RESTART_SYSCALL = 128
|
||||||
|
SYS_KILL = 129
|
||||||
|
SYS_TKILL = 130
|
||||||
|
SYS_TGKILL = 131
|
||||||
|
SYS_SIGALTSTACK = 132
|
||||||
|
SYS_RT_SIGSUSPEND = 133
|
||||||
|
SYS_RT_SIGACTION = 134
|
||||||
|
SYS_RT_SIGPROCMASK = 135
|
||||||
|
SYS_RT_SIGPENDING = 136
|
||||||
|
SYS_RT_SIGTIMEDWAIT = 137
|
||||||
|
SYS_RT_SIGQUEUEINFO = 138
|
||||||
|
SYS_RT_SIGRETURN = 139
|
||||||
|
SYS_SETPRIORITY = 140
|
||||||
|
SYS_GETPRIORITY = 141
|
||||||
|
SYS_REBOOT = 142
|
||||||
|
SYS_SETREGID = 143
|
||||||
|
SYS_SETGID = 144
|
||||||
|
SYS_SETREUID = 145
|
||||||
|
SYS_SETUID = 146
|
||||||
|
SYS_SETRESUID = 147
|
||||||
|
SYS_GETRESUID = 148
|
||||||
|
SYS_SETRESGID = 149
|
||||||
|
SYS_GETRESGID = 150
|
||||||
|
SYS_SETFSUID = 151
|
||||||
|
SYS_SETFSGID = 152
|
||||||
|
SYS_TIMES = 153
|
||||||
|
SYS_SETPGID = 154
|
||||||
|
SYS_GETPGID = 155
|
||||||
|
SYS_GETSID = 156
|
||||||
|
SYS_SETSID = 157
|
||||||
|
SYS_GETGROUPS = 158
|
||||||
|
SYS_SETGROUPS = 159
|
||||||
|
SYS_UNAME = 160
|
||||||
|
SYS_SETHOSTNAME = 161
|
||||||
|
SYS_SETDOMAINNAME = 162
|
||||||
|
SYS_GETRLIMIT = 163
|
||||||
|
SYS_SETRLIMIT = 164
|
||||||
|
SYS_GETRUSAGE = 165
|
||||||
|
SYS_UMASK = 166
|
||||||
|
SYS_PRCTL = 167
|
||||||
|
SYS_GETCPU = 168
|
||||||
|
SYS_GETTIMEOFDAY = 169
|
||||||
|
SYS_SETTIMEOFDAY = 170
|
||||||
|
SYS_ADJTIMEX = 171
|
||||||
|
SYS_GETPID = 172
|
||||||
|
SYS_GETPPID = 173
|
||||||
|
SYS_GETUID = 174
|
||||||
|
SYS_GETEUID = 175
|
||||||
|
SYS_GETGID = 176
|
||||||
|
SYS_GETEGID = 177
|
||||||
|
SYS_GETTID = 178
|
||||||
|
SYS_SYSINFO = 179
|
||||||
|
SYS_MQ_OPEN = 180
|
||||||
|
SYS_MQ_UNLINK = 181
|
||||||
|
SYS_MQ_TIMEDSEND = 182
|
||||||
|
SYS_MQ_TIMEDRECEIVE = 183
|
||||||
|
SYS_MQ_NOTIFY = 184
|
||||||
|
SYS_MQ_GETSETATTR = 185
|
||||||
|
SYS_MSGGET = 186
|
||||||
|
SYS_MSGCTL = 187
|
||||||
|
SYS_MSGRCV = 188
|
||||||
|
SYS_MSGSND = 189
|
||||||
|
SYS_SEMGET = 190
|
||||||
|
SYS_SEMCTL = 191
|
||||||
|
SYS_SEMTIMEDOP = 192
|
||||||
|
SYS_SEMOP = 193
|
||||||
|
SYS_SHMGET = 194
|
||||||
|
SYS_SHMCTL = 195
|
||||||
|
SYS_SHMAT = 196
|
||||||
|
SYS_SHMDT = 197
|
||||||
|
SYS_SOCKET = 198
|
||||||
|
SYS_SOCKETPAIR = 199
|
||||||
|
SYS_BIND = 200
|
||||||
|
SYS_LISTEN = 201
|
||||||
|
SYS_ACCEPT = 202
|
||||||
|
SYS_CONNECT = 203
|
||||||
|
SYS_GETSOCKNAME = 204
|
||||||
|
SYS_GETPEERNAME = 205
|
||||||
|
SYS_SENDTO = 206
|
||||||
|
SYS_RECVFROM = 207
|
||||||
|
SYS_SETSOCKOPT = 208
|
||||||
|
SYS_GETSOCKOPT = 209
|
||||||
|
SYS_SHUTDOWN = 210
|
||||||
|
SYS_SENDMSG = 211
|
||||||
|
SYS_RECVMSG = 212
|
||||||
|
SYS_READAHEAD = 213
|
||||||
|
SYS_BRK = 214
|
||||||
|
SYS_MUNMAP = 215
|
||||||
|
SYS_MREMAP = 216
|
||||||
|
SYS_ADD_KEY = 217
|
||||||
|
SYS_REQUEST_KEY = 218
|
||||||
|
SYS_KEYCTL = 219
|
||||||
|
SYS_CLONE = 220
|
||||||
|
SYS_EXECVE = 221
|
||||||
|
SYS_MMAP = 222
|
||||||
|
SYS_FADVISE64 = 223
|
||||||
|
SYS_SWAPON = 224
|
||||||
|
SYS_SWAPOFF = 225
|
||||||
|
SYS_MPROTECT = 226
|
||||||
|
SYS_MSYNC = 227
|
||||||
|
SYS_MLOCK = 228
|
||||||
|
SYS_MUNLOCK = 229
|
||||||
|
SYS_MLOCKALL = 230
|
||||||
|
SYS_MUNLOCKALL = 231
|
||||||
|
SYS_MINCORE = 232
|
||||||
|
SYS_MADVISE = 233
|
||||||
|
SYS_REMAP_FILE_PAGES = 234
|
||||||
|
SYS_MBIND = 235
|
||||||
|
SYS_GET_MEMPOLICY = 236
|
||||||
|
SYS_SET_MEMPOLICY = 237
|
||||||
|
SYS_MIGRATE_PAGES = 238
|
||||||
|
SYS_MOVE_PAGES = 239
|
||||||
|
SYS_RT_TGSIGQUEUEINFO = 240
|
||||||
|
SYS_PERF_EVENT_OPEN = 241
|
||||||
|
SYS_ACCEPT4 = 242
|
||||||
|
SYS_RECVMMSG = 243
|
||||||
|
SYS_ARCH_SPECIFIC_SYSCALL = 244
|
||||||
|
SYS_WAIT4 = 260
|
||||||
|
SYS_PRLIMIT64 = 261
|
||||||
|
SYS_FANOTIFY_INIT = 262
|
||||||
|
SYS_FANOTIFY_MARK = 263
|
||||||
|
SYS_NAME_TO_HANDLE_AT = 264
|
||||||
|
SYS_OPEN_BY_HANDLE_AT = 265
|
||||||
|
SYS_CLOCK_ADJTIME = 266
|
||||||
|
SYS_SYNCFS = 267
|
||||||
|
SYS_SETNS = 268
|
||||||
|
SYS_SENDMMSG = 269
|
||||||
|
SYS_PROCESS_VM_READV = 270
|
||||||
|
SYS_PROCESS_VM_WRITEV = 271
|
||||||
|
SYS_KCMP = 272
|
||||||
|
SYS_FINIT_MODULE = 273
|
||||||
|
SYS_SCHED_SETATTR = 274
|
||||||
|
SYS_SCHED_GETATTR = 275
|
||||||
|
SYS_RENAMEAT2 = 276
|
||||||
|
SYS_SECCOMP = 277
|
||||||
|
SYS_GETRANDOM = 278
|
||||||
|
SYS_MEMFD_CREATE = 279
|
||||||
|
SYS_BPF = 280
|
||||||
|
SYS_EXECVEAT = 281
|
||||||
|
SYS_USERFAULTFD = 282
|
||||||
|
SYS_MEMBARRIER = 283
|
||||||
|
SYS_MLOCK2 = 284
|
||||||
|
SYS_COPY_FILE_RANGE = 285
|
||||||
|
SYS_PREADV2 = 286
|
||||||
|
SYS_PWRITEV2 = 287
|
||||||
|
SYS_PKEY_MPROTECT = 288
|
||||||
|
SYS_PKEY_ALLOC = 289
|
||||||
|
SYS_PKEY_FREE = 290
|
||||||
|
SYS_STATX = 291
|
||||||
|
SYS_IO_PGETEVENTS = 292
|
||||||
|
)
|
45
vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go
generated
vendored
45
vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go
generated
vendored
|
@ -268,9 +268,22 @@ type Termios struct {
|
||||||
Cc [16]uint8
|
Cc [16]uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
type Termio struct{}
|
type Termio struct {
|
||||||
|
Iflag uint16
|
||||||
|
Oflag uint16
|
||||||
|
Cflag uint16
|
||||||
|
Lflag uint16
|
||||||
|
Line uint8
|
||||||
|
Cc [8]uint8
|
||||||
|
_ [1]byte
|
||||||
|
}
|
||||||
|
|
||||||
type Winsize struct{}
|
type Winsize struct {
|
||||||
|
Row uint16
|
||||||
|
Col uint16
|
||||||
|
Xpixel uint16
|
||||||
|
Ypixel uint16
|
||||||
|
}
|
||||||
|
|
||||||
type PollFd struct {
|
type PollFd struct {
|
||||||
Fd int32
|
Fd int32
|
||||||
|
@ -301,6 +314,32 @@ type Flock_t struct {
|
||||||
Len int64
|
Len int64
|
||||||
}
|
}
|
||||||
|
|
||||||
type Statfs_t struct{}
|
type Fsid_t struct {
|
||||||
|
Val [2]uint32
|
||||||
|
}
|
||||||
|
type Fsid64_t struct {
|
||||||
|
Val [2]uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type Statfs_t struct {
|
||||||
|
Version int32
|
||||||
|
Type int32
|
||||||
|
Bsize uint32
|
||||||
|
Blocks uint32
|
||||||
|
Bfree uint32
|
||||||
|
Bavail uint32
|
||||||
|
Files uint32
|
||||||
|
Ffree uint32
|
||||||
|
Fsid Fsid_t
|
||||||
|
Vfstype int32
|
||||||
|
Fsize uint32
|
||||||
|
Vfsnumber int32
|
||||||
|
Vfsoff int32
|
||||||
|
Vfslen int32
|
||||||
|
Vfsvers int32
|
||||||
|
Fname [32]uint8
|
||||||
|
Fpack [32]uint8
|
||||||
|
Name_max int32
|
||||||
|
}
|
||||||
|
|
||||||
const RNDGETENTCNT = 0x80045200
|
const RNDGETENTCNT = 0x80045200
|
||||||
|
|
47
vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go
generated
vendored
47
vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go
generated
vendored
|
@ -275,9 +275,22 @@ type Termios struct {
|
||||||
Cc [16]uint8
|
Cc [16]uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
type Termio struct{}
|
type Termio struct {
|
||||||
|
Iflag uint16
|
||||||
|
Oflag uint16
|
||||||
|
Cflag uint16
|
||||||
|
Lflag uint16
|
||||||
|
Line uint8
|
||||||
|
Cc [8]uint8
|
||||||
|
_ [1]byte
|
||||||
|
}
|
||||||
|
|
||||||
type Winsize struct{}
|
type Winsize struct {
|
||||||
|
Row uint16
|
||||||
|
Col uint16
|
||||||
|
Xpixel uint16
|
||||||
|
Ypixel uint16
|
||||||
|
}
|
||||||
|
|
||||||
type PollFd struct {
|
type PollFd struct {
|
||||||
Fd int32
|
Fd int32
|
||||||
|
@ -308,6 +321,34 @@ type Flock_t struct {
|
||||||
Len int64
|
Len int64
|
||||||
}
|
}
|
||||||
|
|
||||||
type Statfs_t struct{}
|
type Fsid_t struct {
|
||||||
|
Val [2]uint32
|
||||||
|
}
|
||||||
|
type Fsid64_t struct {
|
||||||
|
Val [2]uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type Statfs_t struct {
|
||||||
|
Version int32
|
||||||
|
Type int32
|
||||||
|
Bsize uint64
|
||||||
|
Blocks uint64
|
||||||
|
Bfree uint64
|
||||||
|
Bavail uint64
|
||||||
|
Files uint64
|
||||||
|
Ffree uint64
|
||||||
|
Fsid Fsid64_t
|
||||||
|
Vfstype int32
|
||||||
|
_ [4]byte
|
||||||
|
Fsize uint64
|
||||||
|
Vfsnumber int32
|
||||||
|
Vfsoff int32
|
||||||
|
Vfslen int32
|
||||||
|
Vfsvers int32
|
||||||
|
Fname [32]uint8
|
||||||
|
Fpack [32]uint8
|
||||||
|
Name_max int32
|
||||||
|
_ [4]byte
|
||||||
|
}
|
||||||
|
|
||||||
const RNDGETENTCNT = 0x80045200
|
const RNDGETENTCNT = 0x80045200
|
||||||
|
|
55
vendor/golang.org/x/sys/unix/ztypes_linux_386.go
generated
vendored
55
vendor/golang.org/x/sys/unix/ztypes_linux_386.go
generated
vendored
|
@ -278,6 +278,14 @@ type RawSockaddrVM struct {
|
||||||
Zero [4]uint8
|
Zero [4]uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RawSockaddrXDP struct {
|
||||||
|
Family uint16
|
||||||
|
Flags uint16
|
||||||
|
Ifindex uint32
|
||||||
|
Queue_id uint32
|
||||||
|
Shared_umem_fd uint32
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -412,6 +420,7 @@ const (
|
||||||
SizeofSockaddrCAN = 0x10
|
SizeofSockaddrCAN = 0x10
|
||||||
SizeofSockaddrALG = 0x58
|
SizeofSockaddrALG = 0x58
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x8
|
SizeofIovec = 0x8
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -510,6 +519,20 @@ const (
|
||||||
RTA_FLOW = 0xb
|
RTA_FLOW = 0xb
|
||||||
RTA_CACHEINFO = 0xc
|
RTA_CACHEINFO = 0xc
|
||||||
RTA_TABLE = 0xf
|
RTA_TABLE = 0xf
|
||||||
|
RTA_MARK = 0x10
|
||||||
|
RTA_MFC_STATS = 0x11
|
||||||
|
RTA_VIA = 0x12
|
||||||
|
RTA_NEWDST = 0x13
|
||||||
|
RTA_PREF = 0x14
|
||||||
|
RTA_ENCAP_TYPE = 0x15
|
||||||
|
RTA_ENCAP = 0x16
|
||||||
|
RTA_EXPIRES = 0x17
|
||||||
|
RTA_PAD = 0x18
|
||||||
|
RTA_UID = 0x19
|
||||||
|
RTA_TTL_PROPAGATE = 0x1a
|
||||||
|
RTA_IP_PROTO = 0x1b
|
||||||
|
RTA_SPORT = 0x1c
|
||||||
|
RTA_DPORT = 0x1d
|
||||||
RTN_UNSPEC = 0x0
|
RTN_UNSPEC = 0x0
|
||||||
RTN_UNICAST = 0x1
|
RTN_UNICAST = 0x1
|
||||||
RTN_LOCAL = 0x2
|
RTN_LOCAL = 0x2
|
||||||
|
@ -1882,3 +1905,35 @@ const (
|
||||||
NETNSA_PID = 0x2
|
NETNSA_PID = 0x2
|
||||||
NETNSA_FD = 0x3
|
NETNSA_FD = 0x3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type XDPRingOffset struct {
|
||||||
|
Producer uint64
|
||||||
|
Consumer uint64
|
||||||
|
Desc uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPMmapOffsets struct {
|
||||||
|
Rx XDPRingOffset
|
||||||
|
Tx XDPRingOffset
|
||||||
|
Fr XDPRingOffset
|
||||||
|
Cr XDPRingOffset
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPUmemReg struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint64
|
||||||
|
Size uint32
|
||||||
|
Headroom uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPStatistics struct {
|
||||||
|
Rx_dropped uint64
|
||||||
|
Rx_invalid_descs uint64
|
||||||
|
Tx_invalid_descs uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPDesc struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint32
|
||||||
|
Options uint32
|
||||||
|
}
|
||||||
|
|
55
vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go
generated
vendored
55
vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go
generated
vendored
|
@ -280,6 +280,14 @@ type RawSockaddrVM struct {
|
||||||
Zero [4]uint8
|
Zero [4]uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RawSockaddrXDP struct {
|
||||||
|
Family uint16
|
||||||
|
Flags uint16
|
||||||
|
Ifindex uint32
|
||||||
|
Queue_id uint32
|
||||||
|
Shared_umem_fd uint32
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -416,6 +424,7 @@ const (
|
||||||
SizeofSockaddrCAN = 0x10
|
SizeofSockaddrCAN = 0x10
|
||||||
SizeofSockaddrALG = 0x58
|
SizeofSockaddrALG = 0x58
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -514,6 +523,20 @@ const (
|
||||||
RTA_FLOW = 0xb
|
RTA_FLOW = 0xb
|
||||||
RTA_CACHEINFO = 0xc
|
RTA_CACHEINFO = 0xc
|
||||||
RTA_TABLE = 0xf
|
RTA_TABLE = 0xf
|
||||||
|
RTA_MARK = 0x10
|
||||||
|
RTA_MFC_STATS = 0x11
|
||||||
|
RTA_VIA = 0x12
|
||||||
|
RTA_NEWDST = 0x13
|
||||||
|
RTA_PREF = 0x14
|
||||||
|
RTA_ENCAP_TYPE = 0x15
|
||||||
|
RTA_ENCAP = 0x16
|
||||||
|
RTA_EXPIRES = 0x17
|
||||||
|
RTA_PAD = 0x18
|
||||||
|
RTA_UID = 0x19
|
||||||
|
RTA_TTL_PROPAGATE = 0x1a
|
||||||
|
RTA_IP_PROTO = 0x1b
|
||||||
|
RTA_SPORT = 0x1c
|
||||||
|
RTA_DPORT = 0x1d
|
||||||
RTN_UNSPEC = 0x0
|
RTN_UNSPEC = 0x0
|
||||||
RTN_UNICAST = 0x1
|
RTN_UNICAST = 0x1
|
||||||
RTN_LOCAL = 0x2
|
RTN_LOCAL = 0x2
|
||||||
|
@ -1904,3 +1927,35 @@ const (
|
||||||
NETNSA_PID = 0x2
|
NETNSA_PID = 0x2
|
||||||
NETNSA_FD = 0x3
|
NETNSA_FD = 0x3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type XDPRingOffset struct {
|
||||||
|
Producer uint64
|
||||||
|
Consumer uint64
|
||||||
|
Desc uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPMmapOffsets struct {
|
||||||
|
Rx XDPRingOffset
|
||||||
|
Tx XDPRingOffset
|
||||||
|
Fr XDPRingOffset
|
||||||
|
Cr XDPRingOffset
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPUmemReg struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint64
|
||||||
|
Size uint32
|
||||||
|
Headroom uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPStatistics struct {
|
||||||
|
Rx_dropped uint64
|
||||||
|
Rx_invalid_descs uint64
|
||||||
|
Tx_invalid_descs uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPDesc struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint32
|
||||||
|
Options uint32
|
||||||
|
}
|
||||||
|
|
55
vendor/golang.org/x/sys/unix/ztypes_linux_arm.go
generated
vendored
55
vendor/golang.org/x/sys/unix/ztypes_linux_arm.go
generated
vendored
|
@ -281,6 +281,14 @@ type RawSockaddrVM struct {
|
||||||
Zero [4]uint8
|
Zero [4]uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RawSockaddrXDP struct {
|
||||||
|
Family uint16
|
||||||
|
Flags uint16
|
||||||
|
Ifindex uint32
|
||||||
|
Queue_id uint32
|
||||||
|
Shared_umem_fd uint32
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]uint8
|
Data [14]uint8
|
||||||
|
@ -415,6 +423,7 @@ const (
|
||||||
SizeofSockaddrCAN = 0x10
|
SizeofSockaddrCAN = 0x10
|
||||||
SizeofSockaddrALG = 0x58
|
SizeofSockaddrALG = 0x58
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x8
|
SizeofIovec = 0x8
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -513,6 +522,20 @@ const (
|
||||||
RTA_FLOW = 0xb
|
RTA_FLOW = 0xb
|
||||||
RTA_CACHEINFO = 0xc
|
RTA_CACHEINFO = 0xc
|
||||||
RTA_TABLE = 0xf
|
RTA_TABLE = 0xf
|
||||||
|
RTA_MARK = 0x10
|
||||||
|
RTA_MFC_STATS = 0x11
|
||||||
|
RTA_VIA = 0x12
|
||||||
|
RTA_NEWDST = 0x13
|
||||||
|
RTA_PREF = 0x14
|
||||||
|
RTA_ENCAP_TYPE = 0x15
|
||||||
|
RTA_ENCAP = 0x16
|
||||||
|
RTA_EXPIRES = 0x17
|
||||||
|
RTA_PAD = 0x18
|
||||||
|
RTA_UID = 0x19
|
||||||
|
RTA_TTL_PROPAGATE = 0x1a
|
||||||
|
RTA_IP_PROTO = 0x1b
|
||||||
|
RTA_SPORT = 0x1c
|
||||||
|
RTA_DPORT = 0x1d
|
||||||
RTN_UNSPEC = 0x0
|
RTN_UNSPEC = 0x0
|
||||||
RTN_UNICAST = 0x1
|
RTN_UNICAST = 0x1
|
||||||
RTN_LOCAL = 0x2
|
RTN_LOCAL = 0x2
|
||||||
|
@ -1872,3 +1895,35 @@ const (
|
||||||
NETNSA_PID = 0x2
|
NETNSA_PID = 0x2
|
||||||
NETNSA_FD = 0x3
|
NETNSA_FD = 0x3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type XDPRingOffset struct {
|
||||||
|
Producer uint64
|
||||||
|
Consumer uint64
|
||||||
|
Desc uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPMmapOffsets struct {
|
||||||
|
Rx XDPRingOffset
|
||||||
|
Tx XDPRingOffset
|
||||||
|
Fr XDPRingOffset
|
||||||
|
Cr XDPRingOffset
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPUmemReg struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint64
|
||||||
|
Size uint32
|
||||||
|
Headroom uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPStatistics struct {
|
||||||
|
Rx_dropped uint64
|
||||||
|
Rx_invalid_descs uint64
|
||||||
|
Tx_invalid_descs uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPDesc struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint32
|
||||||
|
Options uint32
|
||||||
|
}
|
||||||
|
|
55
vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go
generated
vendored
55
vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go
generated
vendored
|
@ -281,6 +281,14 @@ type RawSockaddrVM struct {
|
||||||
Zero [4]uint8
|
Zero [4]uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RawSockaddrXDP struct {
|
||||||
|
Family uint16
|
||||||
|
Flags uint16
|
||||||
|
Ifindex uint32
|
||||||
|
Queue_id uint32
|
||||||
|
Shared_umem_fd uint32
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -417,6 +425,7 @@ const (
|
||||||
SizeofSockaddrCAN = 0x10
|
SizeofSockaddrCAN = 0x10
|
||||||
SizeofSockaddrALG = 0x58
|
SizeofSockaddrALG = 0x58
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -515,6 +524,20 @@ const (
|
||||||
RTA_FLOW = 0xb
|
RTA_FLOW = 0xb
|
||||||
RTA_CACHEINFO = 0xc
|
RTA_CACHEINFO = 0xc
|
||||||
RTA_TABLE = 0xf
|
RTA_TABLE = 0xf
|
||||||
|
RTA_MARK = 0x10
|
||||||
|
RTA_MFC_STATS = 0x11
|
||||||
|
RTA_VIA = 0x12
|
||||||
|
RTA_NEWDST = 0x13
|
||||||
|
RTA_PREF = 0x14
|
||||||
|
RTA_ENCAP_TYPE = 0x15
|
||||||
|
RTA_ENCAP = 0x16
|
||||||
|
RTA_EXPIRES = 0x17
|
||||||
|
RTA_PAD = 0x18
|
||||||
|
RTA_UID = 0x19
|
||||||
|
RTA_TTL_PROPAGATE = 0x1a
|
||||||
|
RTA_IP_PROTO = 0x1b
|
||||||
|
RTA_SPORT = 0x1c
|
||||||
|
RTA_DPORT = 0x1d
|
||||||
RTN_UNSPEC = 0x0
|
RTN_UNSPEC = 0x0
|
||||||
RTN_UNICAST = 0x1
|
RTN_UNICAST = 0x1
|
||||||
RTN_LOCAL = 0x2
|
RTN_LOCAL = 0x2
|
||||||
|
@ -1883,3 +1906,35 @@ const (
|
||||||
NETNSA_PID = 0x2
|
NETNSA_PID = 0x2
|
||||||
NETNSA_FD = 0x3
|
NETNSA_FD = 0x3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type XDPRingOffset struct {
|
||||||
|
Producer uint64
|
||||||
|
Consumer uint64
|
||||||
|
Desc uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPMmapOffsets struct {
|
||||||
|
Rx XDPRingOffset
|
||||||
|
Tx XDPRingOffset
|
||||||
|
Fr XDPRingOffset
|
||||||
|
Cr XDPRingOffset
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPUmemReg struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint64
|
||||||
|
Size uint32
|
||||||
|
Headroom uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPStatistics struct {
|
||||||
|
Rx_dropped uint64
|
||||||
|
Rx_invalid_descs uint64
|
||||||
|
Tx_invalid_descs uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPDesc struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint32
|
||||||
|
Options uint32
|
||||||
|
}
|
||||||
|
|
55
vendor/golang.org/x/sys/unix/ztypes_linux_mips.go
generated
vendored
55
vendor/golang.org/x/sys/unix/ztypes_linux_mips.go
generated
vendored
|
@ -279,6 +279,14 @@ type RawSockaddrVM struct {
|
||||||
Zero [4]uint8
|
Zero [4]uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RawSockaddrXDP struct {
|
||||||
|
Family uint16
|
||||||
|
Flags uint16
|
||||||
|
Ifindex uint32
|
||||||
|
Queue_id uint32
|
||||||
|
Shared_umem_fd uint32
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -413,6 +421,7 @@ const (
|
||||||
SizeofSockaddrCAN = 0x10
|
SizeofSockaddrCAN = 0x10
|
||||||
SizeofSockaddrALG = 0x58
|
SizeofSockaddrALG = 0x58
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x8
|
SizeofIovec = 0x8
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -511,6 +520,20 @@ const (
|
||||||
RTA_FLOW = 0xb
|
RTA_FLOW = 0xb
|
||||||
RTA_CACHEINFO = 0xc
|
RTA_CACHEINFO = 0xc
|
||||||
RTA_TABLE = 0xf
|
RTA_TABLE = 0xf
|
||||||
|
RTA_MARK = 0x10
|
||||||
|
RTA_MFC_STATS = 0x11
|
||||||
|
RTA_VIA = 0x12
|
||||||
|
RTA_NEWDST = 0x13
|
||||||
|
RTA_PREF = 0x14
|
||||||
|
RTA_ENCAP_TYPE = 0x15
|
||||||
|
RTA_ENCAP = 0x16
|
||||||
|
RTA_EXPIRES = 0x17
|
||||||
|
RTA_PAD = 0x18
|
||||||
|
RTA_UID = 0x19
|
||||||
|
RTA_TTL_PROPAGATE = 0x1a
|
||||||
|
RTA_IP_PROTO = 0x1b
|
||||||
|
RTA_SPORT = 0x1c
|
||||||
|
RTA_DPORT = 0x1d
|
||||||
RTN_UNSPEC = 0x0
|
RTN_UNSPEC = 0x0
|
||||||
RTN_UNICAST = 0x1
|
RTN_UNICAST = 0x1
|
||||||
RTN_LOCAL = 0x2
|
RTN_LOCAL = 0x2
|
||||||
|
@ -1877,3 +1900,35 @@ const (
|
||||||
NETNSA_PID = 0x2
|
NETNSA_PID = 0x2
|
||||||
NETNSA_FD = 0x3
|
NETNSA_FD = 0x3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type XDPRingOffset struct {
|
||||||
|
Producer uint64
|
||||||
|
Consumer uint64
|
||||||
|
Desc uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPMmapOffsets struct {
|
||||||
|
Rx XDPRingOffset
|
||||||
|
Tx XDPRingOffset
|
||||||
|
Fr XDPRingOffset
|
||||||
|
Cr XDPRingOffset
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPUmemReg struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint64
|
||||||
|
Size uint32
|
||||||
|
Headroom uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPStatistics struct {
|
||||||
|
Rx_dropped uint64
|
||||||
|
Rx_invalid_descs uint64
|
||||||
|
Tx_invalid_descs uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPDesc struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint32
|
||||||
|
Options uint32
|
||||||
|
}
|
||||||
|
|
55
vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go
generated
vendored
55
vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go
generated
vendored
|
@ -281,6 +281,14 @@ type RawSockaddrVM struct {
|
||||||
Zero [4]uint8
|
Zero [4]uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RawSockaddrXDP struct {
|
||||||
|
Family uint16
|
||||||
|
Flags uint16
|
||||||
|
Ifindex uint32
|
||||||
|
Queue_id uint32
|
||||||
|
Shared_umem_fd uint32
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -417,6 +425,7 @@ const (
|
||||||
SizeofSockaddrCAN = 0x10
|
SizeofSockaddrCAN = 0x10
|
||||||
SizeofSockaddrALG = 0x58
|
SizeofSockaddrALG = 0x58
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -515,6 +524,20 @@ const (
|
||||||
RTA_FLOW = 0xb
|
RTA_FLOW = 0xb
|
||||||
RTA_CACHEINFO = 0xc
|
RTA_CACHEINFO = 0xc
|
||||||
RTA_TABLE = 0xf
|
RTA_TABLE = 0xf
|
||||||
|
RTA_MARK = 0x10
|
||||||
|
RTA_MFC_STATS = 0x11
|
||||||
|
RTA_VIA = 0x12
|
||||||
|
RTA_NEWDST = 0x13
|
||||||
|
RTA_PREF = 0x14
|
||||||
|
RTA_ENCAP_TYPE = 0x15
|
||||||
|
RTA_ENCAP = 0x16
|
||||||
|
RTA_EXPIRES = 0x17
|
||||||
|
RTA_PAD = 0x18
|
||||||
|
RTA_UID = 0x19
|
||||||
|
RTA_TTL_PROPAGATE = 0x1a
|
||||||
|
RTA_IP_PROTO = 0x1b
|
||||||
|
RTA_SPORT = 0x1c
|
||||||
|
RTA_DPORT = 0x1d
|
||||||
RTN_UNSPEC = 0x0
|
RTN_UNSPEC = 0x0
|
||||||
RTN_UNICAST = 0x1
|
RTN_UNICAST = 0x1
|
||||||
RTN_LOCAL = 0x2
|
RTN_LOCAL = 0x2
|
||||||
|
@ -1885,3 +1908,35 @@ const (
|
||||||
NETNSA_PID = 0x2
|
NETNSA_PID = 0x2
|
||||||
NETNSA_FD = 0x3
|
NETNSA_FD = 0x3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type XDPRingOffset struct {
|
||||||
|
Producer uint64
|
||||||
|
Consumer uint64
|
||||||
|
Desc uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPMmapOffsets struct {
|
||||||
|
Rx XDPRingOffset
|
||||||
|
Tx XDPRingOffset
|
||||||
|
Fr XDPRingOffset
|
||||||
|
Cr XDPRingOffset
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPUmemReg struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint64
|
||||||
|
Size uint32
|
||||||
|
Headroom uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPStatistics struct {
|
||||||
|
Rx_dropped uint64
|
||||||
|
Rx_invalid_descs uint64
|
||||||
|
Tx_invalid_descs uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPDesc struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint32
|
||||||
|
Options uint32
|
||||||
|
}
|
||||||
|
|
55
vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go
generated
vendored
55
vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go
generated
vendored
|
@ -281,6 +281,14 @@ type RawSockaddrVM struct {
|
||||||
Zero [4]uint8
|
Zero [4]uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RawSockaddrXDP struct {
|
||||||
|
Family uint16
|
||||||
|
Flags uint16
|
||||||
|
Ifindex uint32
|
||||||
|
Queue_id uint32
|
||||||
|
Shared_umem_fd uint32
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -417,6 +425,7 @@ const (
|
||||||
SizeofSockaddrCAN = 0x10
|
SizeofSockaddrCAN = 0x10
|
||||||
SizeofSockaddrALG = 0x58
|
SizeofSockaddrALG = 0x58
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -515,6 +524,20 @@ const (
|
||||||
RTA_FLOW = 0xb
|
RTA_FLOW = 0xb
|
||||||
RTA_CACHEINFO = 0xc
|
RTA_CACHEINFO = 0xc
|
||||||
RTA_TABLE = 0xf
|
RTA_TABLE = 0xf
|
||||||
|
RTA_MARK = 0x10
|
||||||
|
RTA_MFC_STATS = 0x11
|
||||||
|
RTA_VIA = 0x12
|
||||||
|
RTA_NEWDST = 0x13
|
||||||
|
RTA_PREF = 0x14
|
||||||
|
RTA_ENCAP_TYPE = 0x15
|
||||||
|
RTA_ENCAP = 0x16
|
||||||
|
RTA_EXPIRES = 0x17
|
||||||
|
RTA_PAD = 0x18
|
||||||
|
RTA_UID = 0x19
|
||||||
|
RTA_TTL_PROPAGATE = 0x1a
|
||||||
|
RTA_IP_PROTO = 0x1b
|
||||||
|
RTA_SPORT = 0x1c
|
||||||
|
RTA_DPORT = 0x1d
|
||||||
RTN_UNSPEC = 0x0
|
RTN_UNSPEC = 0x0
|
||||||
RTN_UNICAST = 0x1
|
RTN_UNICAST = 0x1
|
||||||
RTN_LOCAL = 0x2
|
RTN_LOCAL = 0x2
|
||||||
|
@ -1885,3 +1908,35 @@ const (
|
||||||
NETNSA_PID = 0x2
|
NETNSA_PID = 0x2
|
||||||
NETNSA_FD = 0x3
|
NETNSA_FD = 0x3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type XDPRingOffset struct {
|
||||||
|
Producer uint64
|
||||||
|
Consumer uint64
|
||||||
|
Desc uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPMmapOffsets struct {
|
||||||
|
Rx XDPRingOffset
|
||||||
|
Tx XDPRingOffset
|
||||||
|
Fr XDPRingOffset
|
||||||
|
Cr XDPRingOffset
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPUmemReg struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint64
|
||||||
|
Size uint32
|
||||||
|
Headroom uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPStatistics struct {
|
||||||
|
Rx_dropped uint64
|
||||||
|
Rx_invalid_descs uint64
|
||||||
|
Tx_invalid_descs uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPDesc struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint32
|
||||||
|
Options uint32
|
||||||
|
}
|
||||||
|
|
55
vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go
generated
vendored
55
vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go
generated
vendored
|
@ -279,6 +279,14 @@ type RawSockaddrVM struct {
|
||||||
Zero [4]uint8
|
Zero [4]uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RawSockaddrXDP struct {
|
||||||
|
Family uint16
|
||||||
|
Flags uint16
|
||||||
|
Ifindex uint32
|
||||||
|
Queue_id uint32
|
||||||
|
Shared_umem_fd uint32
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -413,6 +421,7 @@ const (
|
||||||
SizeofSockaddrCAN = 0x10
|
SizeofSockaddrCAN = 0x10
|
||||||
SizeofSockaddrALG = 0x58
|
SizeofSockaddrALG = 0x58
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x8
|
SizeofIovec = 0x8
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -511,6 +520,20 @@ const (
|
||||||
RTA_FLOW = 0xb
|
RTA_FLOW = 0xb
|
||||||
RTA_CACHEINFO = 0xc
|
RTA_CACHEINFO = 0xc
|
||||||
RTA_TABLE = 0xf
|
RTA_TABLE = 0xf
|
||||||
|
RTA_MARK = 0x10
|
||||||
|
RTA_MFC_STATS = 0x11
|
||||||
|
RTA_VIA = 0x12
|
||||||
|
RTA_NEWDST = 0x13
|
||||||
|
RTA_PREF = 0x14
|
||||||
|
RTA_ENCAP_TYPE = 0x15
|
||||||
|
RTA_ENCAP = 0x16
|
||||||
|
RTA_EXPIRES = 0x17
|
||||||
|
RTA_PAD = 0x18
|
||||||
|
RTA_UID = 0x19
|
||||||
|
RTA_TTL_PROPAGATE = 0x1a
|
||||||
|
RTA_IP_PROTO = 0x1b
|
||||||
|
RTA_SPORT = 0x1c
|
||||||
|
RTA_DPORT = 0x1d
|
||||||
RTN_UNSPEC = 0x0
|
RTN_UNSPEC = 0x0
|
||||||
RTN_UNICAST = 0x1
|
RTN_UNICAST = 0x1
|
||||||
RTN_LOCAL = 0x2
|
RTN_LOCAL = 0x2
|
||||||
|
@ -1877,3 +1900,35 @@ const (
|
||||||
NETNSA_PID = 0x2
|
NETNSA_PID = 0x2
|
||||||
NETNSA_FD = 0x3
|
NETNSA_FD = 0x3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type XDPRingOffset struct {
|
||||||
|
Producer uint64
|
||||||
|
Consumer uint64
|
||||||
|
Desc uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPMmapOffsets struct {
|
||||||
|
Rx XDPRingOffset
|
||||||
|
Tx XDPRingOffset
|
||||||
|
Fr XDPRingOffset
|
||||||
|
Cr XDPRingOffset
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPUmemReg struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint64
|
||||||
|
Size uint32
|
||||||
|
Headroom uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPStatistics struct {
|
||||||
|
Rx_dropped uint64
|
||||||
|
Rx_invalid_descs uint64
|
||||||
|
Tx_invalid_descs uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPDesc struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint32
|
||||||
|
Options uint32
|
||||||
|
}
|
||||||
|
|
55
vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go
generated
vendored
55
vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go
generated
vendored
|
@ -282,6 +282,14 @@ type RawSockaddrVM struct {
|
||||||
Zero [4]uint8
|
Zero [4]uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RawSockaddrXDP struct {
|
||||||
|
Family uint16
|
||||||
|
Flags uint16
|
||||||
|
Ifindex uint32
|
||||||
|
Queue_id uint32
|
||||||
|
Shared_umem_fd uint32
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]uint8
|
Data [14]uint8
|
||||||
|
@ -418,6 +426,7 @@ const (
|
||||||
SizeofSockaddrCAN = 0x10
|
SizeofSockaddrCAN = 0x10
|
||||||
SizeofSockaddrALG = 0x58
|
SizeofSockaddrALG = 0x58
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -516,6 +525,20 @@ const (
|
||||||
RTA_FLOW = 0xb
|
RTA_FLOW = 0xb
|
||||||
RTA_CACHEINFO = 0xc
|
RTA_CACHEINFO = 0xc
|
||||||
RTA_TABLE = 0xf
|
RTA_TABLE = 0xf
|
||||||
|
RTA_MARK = 0x10
|
||||||
|
RTA_MFC_STATS = 0x11
|
||||||
|
RTA_VIA = 0x12
|
||||||
|
RTA_NEWDST = 0x13
|
||||||
|
RTA_PREF = 0x14
|
||||||
|
RTA_ENCAP_TYPE = 0x15
|
||||||
|
RTA_ENCAP = 0x16
|
||||||
|
RTA_EXPIRES = 0x17
|
||||||
|
RTA_PAD = 0x18
|
||||||
|
RTA_UID = 0x19
|
||||||
|
RTA_TTL_PROPAGATE = 0x1a
|
||||||
|
RTA_IP_PROTO = 0x1b
|
||||||
|
RTA_SPORT = 0x1c
|
||||||
|
RTA_DPORT = 0x1d
|
||||||
RTN_UNSPEC = 0x0
|
RTN_UNSPEC = 0x0
|
||||||
RTN_UNICAST = 0x1
|
RTN_UNICAST = 0x1
|
||||||
RTN_LOCAL = 0x2
|
RTN_LOCAL = 0x2
|
||||||
|
@ -1893,3 +1916,35 @@ const (
|
||||||
NETNSA_PID = 0x2
|
NETNSA_PID = 0x2
|
||||||
NETNSA_FD = 0x3
|
NETNSA_FD = 0x3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type XDPRingOffset struct {
|
||||||
|
Producer uint64
|
||||||
|
Consumer uint64
|
||||||
|
Desc uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPMmapOffsets struct {
|
||||||
|
Rx XDPRingOffset
|
||||||
|
Tx XDPRingOffset
|
||||||
|
Fr XDPRingOffset
|
||||||
|
Cr XDPRingOffset
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPUmemReg struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint64
|
||||||
|
Size uint32
|
||||||
|
Headroom uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPStatistics struct {
|
||||||
|
Rx_dropped uint64
|
||||||
|
Rx_invalid_descs uint64
|
||||||
|
Tx_invalid_descs uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPDesc struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint32
|
||||||
|
Options uint32
|
||||||
|
}
|
||||||
|
|
55
vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go
generated
vendored
55
vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go
generated
vendored
|
@ -282,6 +282,14 @@ type RawSockaddrVM struct {
|
||||||
Zero [4]uint8
|
Zero [4]uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RawSockaddrXDP struct {
|
||||||
|
Family uint16
|
||||||
|
Flags uint16
|
||||||
|
Ifindex uint32
|
||||||
|
Queue_id uint32
|
||||||
|
Shared_umem_fd uint32
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]uint8
|
Data [14]uint8
|
||||||
|
@ -418,6 +426,7 @@ const (
|
||||||
SizeofSockaddrCAN = 0x10
|
SizeofSockaddrCAN = 0x10
|
||||||
SizeofSockaddrALG = 0x58
|
SizeofSockaddrALG = 0x58
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -516,6 +525,20 @@ const (
|
||||||
RTA_FLOW = 0xb
|
RTA_FLOW = 0xb
|
||||||
RTA_CACHEINFO = 0xc
|
RTA_CACHEINFO = 0xc
|
||||||
RTA_TABLE = 0xf
|
RTA_TABLE = 0xf
|
||||||
|
RTA_MARK = 0x10
|
||||||
|
RTA_MFC_STATS = 0x11
|
||||||
|
RTA_VIA = 0x12
|
||||||
|
RTA_NEWDST = 0x13
|
||||||
|
RTA_PREF = 0x14
|
||||||
|
RTA_ENCAP_TYPE = 0x15
|
||||||
|
RTA_ENCAP = 0x16
|
||||||
|
RTA_EXPIRES = 0x17
|
||||||
|
RTA_PAD = 0x18
|
||||||
|
RTA_UID = 0x19
|
||||||
|
RTA_TTL_PROPAGATE = 0x1a
|
||||||
|
RTA_IP_PROTO = 0x1b
|
||||||
|
RTA_SPORT = 0x1c
|
||||||
|
RTA_DPORT = 0x1d
|
||||||
RTN_UNSPEC = 0x0
|
RTN_UNSPEC = 0x0
|
||||||
RTN_UNICAST = 0x1
|
RTN_UNICAST = 0x1
|
||||||
RTN_LOCAL = 0x2
|
RTN_LOCAL = 0x2
|
||||||
|
@ -1893,3 +1916,35 @@ const (
|
||||||
NETNSA_PID = 0x2
|
NETNSA_PID = 0x2
|
||||||
NETNSA_FD = 0x3
|
NETNSA_FD = 0x3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type XDPRingOffset struct {
|
||||||
|
Producer uint64
|
||||||
|
Consumer uint64
|
||||||
|
Desc uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPMmapOffsets struct {
|
||||||
|
Rx XDPRingOffset
|
||||||
|
Tx XDPRingOffset
|
||||||
|
Fr XDPRingOffset
|
||||||
|
Cr XDPRingOffset
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPUmemReg struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint64
|
||||||
|
Size uint32
|
||||||
|
Headroom uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPStatistics struct {
|
||||||
|
Rx_dropped uint64
|
||||||
|
Rx_invalid_descs uint64
|
||||||
|
Tx_invalid_descs uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPDesc struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint32
|
||||||
|
Options uint32
|
||||||
|
}
|
||||||
|
|
1967
vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go
generated
vendored
Normal file
1967
vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
55
vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go
generated
vendored
55
vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go
generated
vendored
|
@ -280,6 +280,14 @@ type RawSockaddrVM struct {
|
||||||
Zero [4]uint8
|
Zero [4]uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RawSockaddrXDP struct {
|
||||||
|
Family uint16
|
||||||
|
Flags uint16
|
||||||
|
Ifindex uint32
|
||||||
|
Queue_id uint32
|
||||||
|
Shared_umem_fd uint32
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -416,6 +424,7 @@ const (
|
||||||
SizeofSockaddrCAN = 0x10
|
SizeofSockaddrCAN = 0x10
|
||||||
SizeofSockaddrALG = 0x58
|
SizeofSockaddrALG = 0x58
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -514,6 +523,20 @@ const (
|
||||||
RTA_FLOW = 0xb
|
RTA_FLOW = 0xb
|
||||||
RTA_CACHEINFO = 0xc
|
RTA_CACHEINFO = 0xc
|
||||||
RTA_TABLE = 0xf
|
RTA_TABLE = 0xf
|
||||||
|
RTA_MARK = 0x10
|
||||||
|
RTA_MFC_STATS = 0x11
|
||||||
|
RTA_VIA = 0x12
|
||||||
|
RTA_NEWDST = 0x13
|
||||||
|
RTA_PREF = 0x14
|
||||||
|
RTA_ENCAP_TYPE = 0x15
|
||||||
|
RTA_ENCAP = 0x16
|
||||||
|
RTA_EXPIRES = 0x17
|
||||||
|
RTA_PAD = 0x18
|
||||||
|
RTA_UID = 0x19
|
||||||
|
RTA_TTL_PROPAGATE = 0x1a
|
||||||
|
RTA_IP_PROTO = 0x1b
|
||||||
|
RTA_SPORT = 0x1c
|
||||||
|
RTA_DPORT = 0x1d
|
||||||
RTN_UNSPEC = 0x0
|
RTN_UNSPEC = 0x0
|
||||||
RTN_UNICAST = 0x1
|
RTN_UNICAST = 0x1
|
||||||
RTN_LOCAL = 0x2
|
RTN_LOCAL = 0x2
|
||||||
|
@ -1910,3 +1933,35 @@ const (
|
||||||
NETNSA_PID = 0x2
|
NETNSA_PID = 0x2
|
||||||
NETNSA_FD = 0x3
|
NETNSA_FD = 0x3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type XDPRingOffset struct {
|
||||||
|
Producer uint64
|
||||||
|
Consumer uint64
|
||||||
|
Desc uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPMmapOffsets struct {
|
||||||
|
Rx XDPRingOffset
|
||||||
|
Tx XDPRingOffset
|
||||||
|
Fr XDPRingOffset
|
||||||
|
Cr XDPRingOffset
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPUmemReg struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint64
|
||||||
|
Size uint32
|
||||||
|
Headroom uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPStatistics struct {
|
||||||
|
Rx_dropped uint64
|
||||||
|
Rx_invalid_descs uint64
|
||||||
|
Tx_invalid_descs uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type XDPDesc struct {
|
||||||
|
Addr uint64
|
||||||
|
Len uint32
|
||||||
|
Options uint32
|
||||||
|
}
|
||||||
|
|
195
vendor/maunium.net/go/gomatrix/events.go
generated
vendored
195
vendor/maunium.net/go/gomatrix/events.go
generated
vendored
|
@ -2,12 +2,62 @@ package gomatrix
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type EventTypeClass int
|
||||||
|
|
||||||
|
const (
|
||||||
|
// Normal message events
|
||||||
|
MessageEventType EventTypeClass = iota
|
||||||
|
// State events
|
||||||
|
StateEventType
|
||||||
|
// Ephemeral events
|
||||||
|
EphemeralEventType
|
||||||
|
// Account data events
|
||||||
|
AccountDataEventType
|
||||||
|
// Unknown events
|
||||||
|
UnknownEventType
|
||||||
|
)
|
||||||
|
|
||||||
type EventType struct {
|
type EventType struct {
|
||||||
Type string
|
Type string
|
||||||
IsState bool
|
Class EventTypeClass
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewEventType(name string) EventType {
|
||||||
|
evtType := EventType{Type: name}
|
||||||
|
evtType.Class = evtType.GuessClass()
|
||||||
|
return evtType
|
||||||
|
}
|
||||||
|
|
||||||
|
func (et *EventType) IsState() bool {
|
||||||
|
return et.Class == StateEventType
|
||||||
|
}
|
||||||
|
|
||||||
|
func (et *EventType) IsEphemeral() bool {
|
||||||
|
return et.Class == EphemeralEventType
|
||||||
|
}
|
||||||
|
|
||||||
|
func (et *EventType) IsCustom() bool {
|
||||||
|
return !strings.HasPrefix(et.Type, "m.")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (et *EventType) GuessClass() EventTypeClass {
|
||||||
|
switch et.Type {
|
||||||
|
case StateAliases.Type, StateCanonicalAlias.Type, StateCreate.Type, StateJoinRules.Type, StateMember.Type,
|
||||||
|
StatePowerLevels.Type, StateRoomName.Type, StateRoomAvatar.Type, StateTopic.Type, StatePinnedEvents.Type:
|
||||||
|
return StateEventType
|
||||||
|
case EphemeralEventReceipt.Type, EphemeralEventTyping.Type:
|
||||||
|
return EphemeralEventType
|
||||||
|
case AccountDataDirectChats.Type, AccountDataPushRules.Type, AccountDataRoomTags.Type:
|
||||||
|
return AccountDataEventType
|
||||||
|
case EventRedaction.Type, EventMessage.Type, EventSticker.Type:
|
||||||
|
return MessageEventType
|
||||||
|
default:
|
||||||
|
return UnknownEventType
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (et *EventType) UnmarshalJSON(data []byte) error {
|
func (et *EventType) UnmarshalJSON(data []byte) error {
|
||||||
|
@ -15,14 +65,7 @@ func (et *EventType) UnmarshalJSON(data []byte) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
et.Class = et.GuessClass()
|
||||||
switch et.Type {
|
|
||||||
case StateAliases.Type, StateCanonicalAlias.Type, StateCreate.Type, StateJoinRules.Type, StateMember.Type,
|
|
||||||
StatePowerLevels.Type, StateRoomName.Type, StateRoomAvatar.Type, StateTopic.Type, StatePinnedEvents.Type:
|
|
||||||
et.IsState = true
|
|
||||||
default:
|
|
||||||
et.IsState = false
|
|
||||||
}
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,29 +77,42 @@ func (et *EventType) String() string {
|
||||||
return et.Type
|
return et.Type
|
||||||
}
|
}
|
||||||
|
|
||||||
type MessageType string
|
|
||||||
|
|
||||||
// State events
|
// State events
|
||||||
var (
|
var (
|
||||||
StateAliases = EventType{"m.room.aliases", true}
|
StateAliases = EventType{"m.room.aliases", StateEventType}
|
||||||
StateCanonicalAlias = EventType{"m.room.canonical_alias", true}
|
StateCanonicalAlias = EventType{"m.room.canonical_alias", StateEventType}
|
||||||
StateCreate = EventType{"m.room.create", true}
|
StateCreate = EventType{"m.room.create", StateEventType}
|
||||||
StateJoinRules = EventType{"m.room.join_rules", true}
|
StateJoinRules = EventType{"m.room.join_rules", StateEventType}
|
||||||
StateMember = EventType{"m.room.member", true}
|
StateMember = EventType{"m.room.member", StateEventType}
|
||||||
StatePowerLevels = EventType{"m.room.power_levels", true}
|
StatePowerLevels = EventType{"m.room.power_levels", StateEventType}
|
||||||
StateRoomName = EventType{"m.room.name", true}
|
StateRoomName = EventType{"m.room.name", StateEventType}
|
||||||
StateTopic = EventType{"m.room.topic", true}
|
StateTopic = EventType{"m.room.topic", StateEventType}
|
||||||
StateRoomAvatar = EventType{"m.room.avatar", true}
|
StateRoomAvatar = EventType{"m.room.avatar", StateEventType}
|
||||||
StatePinnedEvents = EventType{"m.room.pinned_events", true}
|
StatePinnedEvents = EventType{"m.room.pinned_events", StateEventType}
|
||||||
)
|
)
|
||||||
|
|
||||||
// Message events
|
// Message events
|
||||||
var (
|
var (
|
||||||
EventRedaction = EventType{"m.room.redaction", false}
|
EventRedaction = EventType{"m.room.redaction", MessageEventType}
|
||||||
EventMessage = EventType{"m.room.message", false}
|
EventMessage = EventType{"m.room.message", MessageEventType}
|
||||||
EventSticker = EventType{"m.sticker", false}
|
EventSticker = EventType{"m.sticker", MessageEventType}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Ephemeral events
|
||||||
|
var (
|
||||||
|
EphemeralEventReceipt = EventType{"m.receipt", EphemeralEventType}
|
||||||
|
EphemeralEventTyping = EventType{"m.typing", EphemeralEventType}
|
||||||
|
)
|
||||||
|
|
||||||
|
// Account data events
|
||||||
|
var (
|
||||||
|
AccountDataDirectChats = EventType{"m.direct", AccountDataEventType}
|
||||||
|
AccountDataPushRules = EventType{"m.push_rules", AccountDataEventType}
|
||||||
|
AccountDataRoomTags = EventType{"m.tag", AccountDataEventType}
|
||||||
|
)
|
||||||
|
|
||||||
|
type MessageType string
|
||||||
|
|
||||||
// Msgtypes
|
// Msgtypes
|
||||||
const (
|
const (
|
||||||
MsgText MessageType = "m.text"
|
MsgText MessageType = "m.text"
|
||||||
|
@ -105,10 +161,21 @@ type StrippedState struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type Unsigned struct {
|
type Unsigned struct {
|
||||||
PrevContent map[string]interface{} `json:"prev_content,omitempty"`
|
PrevContent *Content `json:"prev_content,omitempty"`
|
||||||
PrevSender string `json:"prev_sender,omitempty"`
|
PrevSender string `json:"prev_sender,omitempty"`
|
||||||
ReplacesState string `json:"replaces_state,omitempty"`
|
ReplacesState string `json:"replaces_state,omitempty"`
|
||||||
Age int64 `json:"age,omitempty"`
|
Age int64 `json:"age,omitempty"`
|
||||||
|
|
||||||
|
PassiveCommand map[string]*MatchedPassiveCommand `json:"m.passive_command,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type MatchedPassiveCommand struct {
|
||||||
|
// Matched string `json:"matched"`
|
||||||
|
// Value string `json:"value"`
|
||||||
|
Captured [][]string `json:"captured"`
|
||||||
|
|
||||||
|
BackCompatCommand string `json:"command"`
|
||||||
|
BackCompatArguments map[string]string `json:"arguments"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Content struct {
|
type Content struct {
|
||||||
|
@ -124,28 +191,48 @@ type Content struct {
|
||||||
URL string `json:"url,omitempty"`
|
URL string `json:"url,omitempty"`
|
||||||
|
|
||||||
// Membership key for easy access in m.room.member events
|
// Membership key for easy access in m.room.member events
|
||||||
Membership string `json:"membership,omitempty"`
|
Membership Membership `json:"membership,omitempty"`
|
||||||
|
|
||||||
RelatesTo *RelatesTo `json:"m.relates_to,omitempty"`
|
RelatesTo *RelatesTo `json:"m.relates_to,omitempty"`
|
||||||
|
Command *MatchedCommand `json:"m.command,omitempty"`
|
||||||
|
|
||||||
PowerLevels
|
PowerLevels
|
||||||
Member
|
Member
|
||||||
Aliases
|
Aliases []string `json:"aliases,omitempty"`
|
||||||
CanonicalAlias
|
CanonicalAlias
|
||||||
RoomName
|
RoomName
|
||||||
RoomTopic
|
RoomTopic
|
||||||
|
|
||||||
|
RoomTags Tags `json:"tags,omitempty"`
|
||||||
|
TypingUserIDs []string `json:"user_ids,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type serializableContent Content
|
type serializableContent Content
|
||||||
|
|
||||||
|
var DisableFancyEventParsing = false
|
||||||
|
|
||||||
func (content *Content) UnmarshalJSON(data []byte) error {
|
func (content *Content) UnmarshalJSON(data []byte) error {
|
||||||
content.VeryRaw = data
|
content.VeryRaw = data
|
||||||
if err := json.Unmarshal(data, &content.Raw); err != nil {
|
if err := json.Unmarshal(data, &content.Raw); err != nil || DisableFancyEventParsing {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return json.Unmarshal(data, (*serializableContent)(content))
|
return json.Unmarshal(data, (*serializableContent)(content))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (content *Content) GetCommand() *MatchedCommand {
|
||||||
|
if content.Command == nil {
|
||||||
|
content.Command = &MatchedCommand{}
|
||||||
|
}
|
||||||
|
return content.Command
|
||||||
|
}
|
||||||
|
|
||||||
|
func (content *Content) GetRelatesTo() *RelatesTo {
|
||||||
|
if content.RelatesTo == nil {
|
||||||
|
content.RelatesTo = &RelatesTo{}
|
||||||
|
}
|
||||||
|
return content.RelatesTo
|
||||||
|
}
|
||||||
|
|
||||||
func (content *Content) UnmarshalPowerLevels() (pl PowerLevels, err error) {
|
func (content *Content) UnmarshalPowerLevels() (pl PowerLevels, err error) {
|
||||||
err = json.Unmarshal(content.VeryRaw, &pl)
|
err = json.Unmarshal(content.VeryRaw, &pl)
|
||||||
return
|
return
|
||||||
|
@ -156,11 +243,6 @@ func (content *Content) UnmarshalMember() (m Member, err error) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (content *Content) UnmarshalAliases() (a Aliases, err error) {
|
|
||||||
err = json.Unmarshal(content.VeryRaw, &a)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func (content *Content) UnmarshalCanonicalAlias() (ca CanonicalAlias, err error) {
|
func (content *Content) UnmarshalCanonicalAlias() (ca CanonicalAlias, err error) {
|
||||||
err = json.Unmarshal(content.VeryRaw, &ca)
|
err = json.Unmarshal(content.VeryRaw, &ca)
|
||||||
return
|
return
|
||||||
|
@ -173,6 +255,10 @@ func (content *Content) GetInfo() *FileInfo {
|
||||||
return content.Info
|
return content.Info
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Tags map[string]struct {
|
||||||
|
Order string `json:"order"`
|
||||||
|
}
|
||||||
|
|
||||||
type RoomName struct {
|
type RoomName struct {
|
||||||
Name string `json:"name,omitempty"`
|
Name string `json:"name,omitempty"`
|
||||||
}
|
}
|
||||||
|
@ -181,11 +267,24 @@ type RoomTopic struct {
|
||||||
Topic string `json:"topic,omitempty"`
|
Topic string `json:"topic,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Membership is an enum specifying the membership state of a room member.
|
||||||
|
type Membership string
|
||||||
|
|
||||||
|
// The allowed membership states as specified in spec section 10.5.5.
|
||||||
|
const (
|
||||||
|
MembershipJoin Membership = "join"
|
||||||
|
MembershipLeave Membership = "leave"
|
||||||
|
MembershipInvite Membership = "invite"
|
||||||
|
MembershipBan Membership = "ban"
|
||||||
|
MembershipKnock Membership = "knock"
|
||||||
|
)
|
||||||
|
|
||||||
type Member struct {
|
type Member struct {
|
||||||
Membership string `json:"membership,omitempty"`
|
Membership Membership `json:"membership,omitempty"`
|
||||||
AvatarURL string `json:"avatar_url,omitempty"`
|
AvatarURL string `json:"avatar_url,omitempty"`
|
||||||
Displayname string `json:"displayname,omitempty"`
|
Displayname string `json:"displayname,omitempty"`
|
||||||
ThirdPartyInvite *ThirdPartyInvite `json:"third_party_invite,omitempty"`
|
ThirdPartyInvite *ThirdPartyInvite `json:"third_party_invite,omitempty"`
|
||||||
|
Reason string `json:"reason,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type ThirdPartyInvite struct {
|
type ThirdPartyInvite struct {
|
||||||
|
@ -197,10 +296,6 @@ type ThirdPartyInvite struct {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type Aliases struct {
|
|
||||||
Aliases []string `json:"aliases,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type CanonicalAlias struct {
|
type CanonicalAlias struct {
|
||||||
Alias string `json:"alias,omitempty"`
|
Alias string `json:"alias,omitempty"`
|
||||||
}
|
}
|
||||||
|
@ -210,9 +305,9 @@ type PowerLevels struct {
|
||||||
Users map[string]int `json:"users,omitempty"`
|
Users map[string]int `json:"users,omitempty"`
|
||||||
UsersDefault int `json:"users_default,omitempty"`
|
UsersDefault int `json:"users_default,omitempty"`
|
||||||
|
|
||||||
eventsLock sync.RWMutex `json:"-"`
|
eventsLock sync.RWMutex `json:"-"`
|
||||||
Events map[string]int `json:"events,omitempty"`
|
Events map[string]int `json:"events,omitempty"`
|
||||||
EventsDefault int `json:"events_default,omitempty"`
|
EventsDefault int `json:"events_default,omitempty"`
|
||||||
|
|
||||||
StateDefaultPtr *int `json:"state_default,omitempty"`
|
StateDefaultPtr *int `json:"state_default,omitempty"`
|
||||||
|
|
||||||
|
@ -291,7 +386,7 @@ func (pl *PowerLevels) GetEventLevel(eventType EventType) int {
|
||||||
defer pl.eventsLock.RUnlock()
|
defer pl.eventsLock.RUnlock()
|
||||||
level, ok := pl.Events[eventType.String()]
|
level, ok := pl.Events[eventType.String()]
|
||||||
if !ok {
|
if !ok {
|
||||||
if eventType.IsState {
|
if eventType.IsState() {
|
||||||
return pl.StateDefault()
|
return pl.StateDefault()
|
||||||
}
|
}
|
||||||
return pl.EventsDefault
|
return pl.EventsDefault
|
||||||
|
@ -302,7 +397,7 @@ func (pl *PowerLevels) GetEventLevel(eventType EventType) int {
|
||||||
func (pl *PowerLevels) SetEventLevel(eventType EventType, level int) {
|
func (pl *PowerLevels) SetEventLevel(eventType EventType, level int) {
|
||||||
pl.eventsLock.Lock()
|
pl.eventsLock.Lock()
|
||||||
defer pl.eventsLock.Unlock()
|
defer pl.eventsLock.Unlock()
|
||||||
if (eventType.IsState && level == pl.StateDefault()) || (!eventType.IsState && level == pl.EventsDefault) {
|
if (eventType.IsState() && level == pl.StateDefault()) || (!eventType.IsState() && level == pl.EventsDefault) {
|
||||||
delete(pl.Events, eventType.String())
|
delete(pl.Events, eventType.String())
|
||||||
} else {
|
} else {
|
||||||
pl.Events[eventType.String()] = level
|
pl.Events[eventType.String()] = level
|
||||||
|
@ -344,3 +439,9 @@ type InReplyTo struct {
|
||||||
// Not required, just for future-proofing
|
// Not required, just for future-proofing
|
||||||
RoomID string `json:"room_id,omitempty"`
|
RoomID string `json:"room_id,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type MatchedCommand struct {
|
||||||
|
Target string `json:"target"`
|
||||||
|
Matched string `json:"matched"`
|
||||||
|
Arguments map[string]string `json:"arguments"`
|
||||||
|
}
|
||||||
|
|
2
vendor/maunium.net/go/gomatrix/format/markdown.go
generated
vendored
2
vendor/maunium.net/go/gomatrix/format/markdown.go
generated
vendored
|
@ -2,8 +2,8 @@ package format
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gopkg.in/russross/blackfriday.v2"
|
"gopkg.in/russross/blackfriday.v2"
|
||||||
"strings"
|
|
||||||
"maunium.net/go/gomatrix"
|
"maunium.net/go/gomatrix"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
func RenderMarkdown(text string) gomatrix.Content {
|
func RenderMarkdown(text string) gomatrix.Content {
|
||||||
|
|
4
vendor/maunium.net/go/gomatrix/requests.go
generated
vendored
4
vendor/maunium.net/go/gomatrix/requests.go
generated
vendored
|
@ -31,7 +31,7 @@ type ReqCreateRoom struct {
|
||||||
Invite []string `json:"invite,omitempty"`
|
Invite []string `json:"invite,omitempty"`
|
||||||
Invite3PID []ReqInvite3PID `json:"invite_3pid,omitempty"`
|
Invite3PID []ReqInvite3PID `json:"invite_3pid,omitempty"`
|
||||||
CreationContent map[string]interface{} `json:"creation_content,omitempty"`
|
CreationContent map[string]interface{} `json:"creation_content,omitempty"`
|
||||||
InitialState []*Event `json:"initial_state,omitempty"`
|
InitialState []*Event `json:"initial_state,omitempty"`
|
||||||
Preset string `json:"preset,omitempty"`
|
Preset string `json:"preset,omitempty"`
|
||||||
IsDirect bool `json:"is_direct,omitempty"`
|
IsDirect bool `json:"is_direct,omitempty"`
|
||||||
}
|
}
|
||||||
|
@ -79,4 +79,4 @@ type ReqTyping struct {
|
||||||
|
|
||||||
type ReqPresence struct {
|
type ReqPresence struct {
|
||||||
Presence string `json:"presence"`
|
Presence string `json:"presence"`
|
||||||
}
|
}
|
||||||
|
|
18
vendor/maunium.net/go/gomatrix/responses.go
generated
vendored
18
vendor/maunium.net/go/gomatrix/responses.go
generated
vendored
|
@ -63,9 +63,9 @@ type RespJoinedMembers struct {
|
||||||
|
|
||||||
// RespMessages is the JSON response for https://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-rooms-roomid-messages
|
// RespMessages is the JSON response for https://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-rooms-roomid-messages
|
||||||
type RespMessages struct {
|
type RespMessages struct {
|
||||||
Start string `json:"start"`
|
Start string `json:"start"`
|
||||||
Chunk []Event `json:"chunk"`
|
Chunk []*Event `json:"chunk"`
|
||||||
End string `json:"end"`
|
End string `json:"end"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespSendEvent is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-send-eventtype-txnid
|
// RespSendEvent is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-send-eventtype-txnid
|
||||||
|
@ -146,8 +146,8 @@ type RespSync struct {
|
||||||
} `json:"state"`
|
} `json:"state"`
|
||||||
Timeline struct {
|
Timeline struct {
|
||||||
Events []*Event `json:"events"`
|
Events []*Event `json:"events"`
|
||||||
Limited bool `json:"limited"`
|
Limited bool `json:"limited"`
|
||||||
PrevBatch string `json:"prev_batch"`
|
PrevBatch string `json:"prev_batch"`
|
||||||
} `json:"timeline"`
|
} `json:"timeline"`
|
||||||
} `json:"leave"`
|
} `json:"leave"`
|
||||||
Join map[string]struct {
|
Join map[string]struct {
|
||||||
|
@ -156,14 +156,14 @@ type RespSync struct {
|
||||||
} `json:"state"`
|
} `json:"state"`
|
||||||
Timeline struct {
|
Timeline struct {
|
||||||
Events []*Event `json:"events"`
|
Events []*Event `json:"events"`
|
||||||
Limited bool `json:"limited"`
|
Limited bool `json:"limited"`
|
||||||
PrevBatch string `json:"prev_batch"`
|
PrevBatch string `json:"prev_batch"`
|
||||||
} `json:"timeline"`
|
} `json:"timeline"`
|
||||||
Ephemeral struct {
|
Ephemeral struct {
|
||||||
Events []*Event `json:"events"`
|
Events []*Event `json:"events"`
|
||||||
} `json:"ephemeral"`
|
} `json:"ephemeral"`
|
||||||
AccountData struct {
|
AccountData struct {
|
||||||
Events []*Event `json:"events"`
|
Events []*Event `json:"events"`
|
||||||
} `json:"account_data"`
|
} `json:"account_data"`
|
||||||
} `json:"join"`
|
} `json:"join"`
|
||||||
Invite map[string]struct {
|
Invite map[string]struct {
|
||||||
|
|
4
vendor/maunium.net/go/gomatrix/room.go
generated
vendored
4
vendor/maunium.net/go/gomatrix/room.go
generated
vendored
|
@ -25,8 +25,8 @@ func (room Room) GetStateEvent(eventType EventType, stateKey string) *Event {
|
||||||
|
|
||||||
// GetMembershipState returns the membership state of the given user ID in this room. If there is
|
// GetMembershipState returns the membership state of the given user ID in this room. If there is
|
||||||
// no entry for this member, 'leave' is returned for consistency with left users.
|
// no entry for this member, 'leave' is returned for consistency with left users.
|
||||||
func (room Room) GetMembershipState(userID string) string {
|
func (room Room) GetMembershipState(userID string) Membership {
|
||||||
state := "leave"
|
state := MembershipLeave
|
||||||
event := room.GetStateEvent(StateMember, userID)
|
event := room.GetStateEvent(StateMember, userID)
|
||||||
if event != nil {
|
if event != nil {
|
||||||
state = event.Content.Membership
|
state = event.Content.Membership
|
||||||
|
|
2
vendor/maunium.net/go/gomatrix/userids.go
generated
vendored
2
vendor/maunium.net/go/gomatrix/userids.go
generated
vendored
|
@ -125,6 +125,6 @@ func ExtractUserLocalpart(userID string) (string, error) {
|
||||||
}
|
}
|
||||||
return strings.TrimPrefix(
|
return strings.TrimPrefix(
|
||||||
strings.SplitN(userID, ":", 2)[0], // @foo:bar:8448 => [ "@foo", "bar:8448" ]
|
strings.SplitN(userID, ":", 2)[0], // @foo:bar:8448 => [ "@foo", "bar:8448" ]
|
||||||
"@", // remove "@" prefix
|
"@", // remove "@" prefix
|
||||||
), nil
|
), nil
|
||||||
}
|
}
|
||||||
|
|
39
vendor/maunium.net/go/mautrix-appservice/statestore.go
generated
vendored
39
vendor/maunium.net/go/mautrix-appservice/statestore.go
generated
vendored
|
@ -2,7 +2,6 @@ package appservice
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"maunium.net/go/gomatrix"
|
"maunium.net/go/gomatrix"
|
||||||
"strings"
|
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
@ -16,8 +15,8 @@ type StateStore interface {
|
||||||
|
|
||||||
IsInRoom(roomID, userID string) bool
|
IsInRoom(roomID, userID string) bool
|
||||||
IsInvited(roomID, userID string) bool
|
IsInvited(roomID, userID string) bool
|
||||||
IsMembership(roomID, userID string, allowedMemberships ...string) bool
|
IsMembership(roomID, userID string, allowedMemberships ...gomatrix.Membership) bool
|
||||||
SetMembership(roomID, userID, membership string)
|
SetMembership(roomID, userID string, membership gomatrix.Membership)
|
||||||
|
|
||||||
SetPowerLevels(roomID string, levels *gomatrix.PowerLevels)
|
SetPowerLevels(roomID string, levels *gomatrix.PowerLevels)
|
||||||
GetPowerLevels(roomID string) *gomatrix.PowerLevels
|
GetPowerLevels(roomID string) *gomatrix.PowerLevels
|
||||||
|
@ -36,12 +35,12 @@ func (as *AppService) UpdateState(evt *gomatrix.Event) {
|
||||||
}
|
}
|
||||||
|
|
||||||
type BasicStateStore struct {
|
type BasicStateStore struct {
|
||||||
registrationsLock sync.RWMutex `json:"-"`
|
registrationsLock sync.RWMutex `json:"-"`
|
||||||
Registrations map[string]bool `json:"registrations"`
|
Registrations map[string]bool `json:"registrations"`
|
||||||
membershipsLock sync.RWMutex `json:"-"`
|
membershipsLock sync.RWMutex `json:"-"`
|
||||||
Memberships map[string]map[string]string `json:"memberships"`
|
Memberships map[string]map[string]gomatrix.Membership `json:"memberships"`
|
||||||
powerLevelsLock sync.RWMutex `json:"-"`
|
powerLevelsLock sync.RWMutex `json:"-"`
|
||||||
PowerLevels map[string]*gomatrix.PowerLevels `json:"power_levels"`
|
PowerLevels map[string]*gomatrix.PowerLevels `json:"power_levels"`
|
||||||
|
|
||||||
Typing map[string]map[string]int64 `json:"-"`
|
Typing map[string]map[string]int64 `json:"-"`
|
||||||
typingLock sync.RWMutex `json:"-"`
|
typingLock sync.RWMutex `json:"-"`
|
||||||
|
@ -50,7 +49,7 @@ type BasicStateStore struct {
|
||||||
func NewBasicStateStore() StateStore {
|
func NewBasicStateStore() StateStore {
|
||||||
return &BasicStateStore{
|
return &BasicStateStore{
|
||||||
Registrations: make(map[string]bool),
|
Registrations: make(map[string]bool),
|
||||||
Memberships: make(map[string]map[string]string),
|
Memberships: make(map[string]map[string]gomatrix.Membership),
|
||||||
PowerLevels: make(map[string]*gomatrix.PowerLevels),
|
PowerLevels: make(map[string]*gomatrix.PowerLevels),
|
||||||
Typing: make(map[string]map[string]int64),
|
Typing: make(map[string]map[string]int64),
|
||||||
}
|
}
|
||||||
|
@ -102,12 +101,12 @@ func (store *BasicStateStore) SetTyping(roomID, userID string, timeout int64) {
|
||||||
store.Typing[roomID] = roomTyping
|
store.Typing[roomID] = roomTyping
|
||||||
}
|
}
|
||||||
|
|
||||||
func (store *BasicStateStore) GetRoomMemberships(roomID string) map[string]string {
|
func (store *BasicStateStore) GetRoomMemberships(roomID string) map[string]gomatrix.Membership {
|
||||||
store.membershipsLock.RLock()
|
store.membershipsLock.RLock()
|
||||||
memberships, ok := store.Memberships[roomID]
|
memberships, ok := store.Memberships[roomID]
|
||||||
store.membershipsLock.RUnlock()
|
store.membershipsLock.RUnlock()
|
||||||
if !ok {
|
if !ok {
|
||||||
memberships = make(map[string]string)
|
memberships = make(map[string]gomatrix.Membership)
|
||||||
store.membershipsLock.Lock()
|
store.membershipsLock.Lock()
|
||||||
store.Memberships[roomID] = memberships
|
store.Memberships[roomID] = memberships
|
||||||
store.membershipsLock.Unlock()
|
store.membershipsLock.Unlock()
|
||||||
|
@ -115,16 +114,16 @@ func (store *BasicStateStore) GetRoomMemberships(roomID string) map[string]strin
|
||||||
return memberships
|
return memberships
|
||||||
}
|
}
|
||||||
|
|
||||||
func (store *BasicStateStore) GetMembership(roomID, userID string) string {
|
func (store *BasicStateStore) GetMembership(roomID, userID string) gomatrix.Membership {
|
||||||
store.membershipsLock.RLock()
|
store.membershipsLock.RLock()
|
||||||
defer store.membershipsLock.RUnlock()
|
defer store.membershipsLock.RUnlock()
|
||||||
memberships, ok := store.Memberships[roomID]
|
memberships, ok := store.Memberships[roomID]
|
||||||
if !ok {
|
if !ok {
|
||||||
return "leave"
|
return gomatrix.MembershipLeave
|
||||||
}
|
}
|
||||||
membership, ok := memberships[userID]
|
membership, ok := memberships[userID]
|
||||||
if !ok {
|
if !ok {
|
||||||
return "leave"
|
return gomatrix.MembershipLeave
|
||||||
}
|
}
|
||||||
return membership
|
return membership
|
||||||
}
|
}
|
||||||
|
@ -137,7 +136,7 @@ func (store *BasicStateStore) IsInvited(roomID, userID string) bool {
|
||||||
return store.IsMembership(roomID, userID, "join", "invite")
|
return store.IsMembership(roomID, userID, "join", "invite")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (store *BasicStateStore) IsMembership(roomID, userID string, allowedMemberships ...string) bool {
|
func (store *BasicStateStore) IsMembership(roomID, userID string, allowedMemberships ...gomatrix.Membership) bool {
|
||||||
membership := store.GetMembership(roomID, userID)
|
membership := store.GetMembership(roomID, userID)
|
||||||
for _, allowedMembership := range allowedMemberships {
|
for _, allowedMembership := range allowedMemberships {
|
||||||
if allowedMembership == membership {
|
if allowedMembership == membership {
|
||||||
|
@ -147,15 +146,15 @@ func (store *BasicStateStore) IsMembership(roomID, userID string, allowedMembers
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
func (store *BasicStateStore) SetMembership(roomID, userID, membership string) {
|
func (store *BasicStateStore) SetMembership(roomID, userID string, membership gomatrix.Membership) {
|
||||||
store.membershipsLock.Lock()
|
store.membershipsLock.Lock()
|
||||||
memberships, ok := store.Memberships[roomID]
|
memberships, ok := store.Memberships[roomID]
|
||||||
if !ok {
|
if !ok {
|
||||||
memberships = map[string]string{
|
memberships = map[string]gomatrix.Membership{
|
||||||
userID: strings.ToLower(membership),
|
userID: membership,
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
memberships[userID] = strings.ToLower(membership)
|
memberships[userID] = membership
|
||||||
}
|
}
|
||||||
store.Memberships[roomID] = memberships
|
store.Memberships[roomID] = memberships
|
||||||
store.membershipsLock.Unlock()
|
store.membershipsLock.Unlock()
|
||||||
|
|
Loading…
Reference in a new issue