2015-06-24 04:39:46 -07:00
|
|
|
// Copyright (C) 2015 Audrius Butkevicius and Contributors (see the CONTRIBUTORS file).
|
|
|
|
|
2021-05-08 03:52:06 -07:00
|
|
|
//go:generate -command genxdr go run github.com/calmh/xdr/cmd/genxdr
|
2015-06-24 04:39:46 -07:00
|
|
|
//go:generate genxdr -o packets_xdr.go packets.go
|
|
|
|
|
|
|
|
package protocol
|
|
|
|
|
2015-07-17 12:17:49 -07:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net"
|
2015-09-02 13:35:52 -07:00
|
|
|
|
2015-09-22 10:38:46 -07:00
|
|
|
syncthingprotocol "github.com/syncthing/syncthing/lib/protocol"
|
2015-07-17 12:17:49 -07:00
|
|
|
)
|
|
|
|
|
2015-06-24 04:39:46 -07:00
|
|
|
const (
|
2015-06-27 17:52:01 -07:00
|
|
|
messageTypePing int32 = iota
|
|
|
|
messageTypePong
|
|
|
|
messageTypeJoinRelayRequest
|
|
|
|
messageTypeJoinSessionRequest
|
|
|
|
messageTypeResponse
|
|
|
|
messageTypeConnectRequest
|
|
|
|
messageTypeSessionInvitation
|
2015-11-20 16:42:49 -07:00
|
|
|
messageTypeRelayFull
|
2015-06-24 04:39:46 -07:00
|
|
|
)
|
|
|
|
|
2015-06-27 17:52:01 -07:00
|
|
|
type header struct {
|
|
|
|
magic uint32
|
|
|
|
messageType int32
|
|
|
|
messageLength int32
|
2015-06-24 04:39:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
type Ping struct{}
|
|
|
|
type Pong struct{}
|
2015-06-27 17:52:01 -07:00
|
|
|
type JoinRelayRequest struct{}
|
2015-11-20 16:42:49 -07:00
|
|
|
type RelayFull struct{}
|
2015-06-27 17:52:01 -07:00
|
|
|
|
|
|
|
type JoinSessionRequest struct {
|
|
|
|
Key []byte // max:32
|
|
|
|
}
|
|
|
|
|
|
|
|
type Response struct {
|
|
|
|
Code int32
|
|
|
|
Message string
|
|
|
|
}
|
2015-06-24 04:39:46 -07:00
|
|
|
|
|
|
|
type ConnectRequest struct {
|
|
|
|
ID []byte // max:32
|
|
|
|
}
|
|
|
|
|
|
|
|
type SessionInvitation struct {
|
2015-06-27 17:52:01 -07:00
|
|
|
From []byte // max:32
|
2015-06-24 04:39:46 -07:00
|
|
|
Key []byte // max:32
|
|
|
|
Address []byte // max:32
|
|
|
|
Port uint16
|
|
|
|
ServerSocket bool
|
|
|
|
}
|
2015-07-17 12:17:49 -07:00
|
|
|
|
2015-07-17 13:49:45 -07:00
|
|
|
func (i SessionInvitation) String() string {
|
2020-06-07 01:31:12 -07:00
|
|
|
device := "<invalid>"
|
|
|
|
if address, err := syncthingprotocol.DeviceIDFromBytes(i.From); err == nil {
|
|
|
|
device = address.String()
|
|
|
|
}
|
2021-09-05 08:20:52 -07:00
|
|
|
return fmt.Sprintf("%s@%s:%d", device, net.IP(i.Address), i.Port)
|
2015-07-17 12:17:49 -07:00
|
|
|
}
|
|
|
|
|
2015-07-17 13:49:45 -07:00
|
|
|
func (i SessionInvitation) GoString() string {
|
|
|
|
return i.String()
|
|
|
|
}
|