syncthing/lib/relay/protocol/packets.go

67 lines
1.3 KiB
Go
Raw Normal View History

2015-06-24 13:39:46 +02:00
// Copyright (C) 2015 Audrius Butkevicius and Contributors (see the CONTRIBUTORS file).
//go:generate -command genxdr go run ../../../Godeps/_workspace/src/github.com/calmh/xdr/cmd/genxdr/main.go
2015-06-24 13:39:46 +02:00
//go:generate genxdr -o packets_xdr.go packets.go
package protocol
2015-07-17 21:17:49 +02:00
import (
"fmt"
"net"
2015-09-02 22:35:52 +02:00
2015-09-22 19:38:46 +02:00
syncthingprotocol "github.com/syncthing/syncthing/lib/protocol"
2015-07-17 21:17:49 +02:00
)
2015-06-24 13:39:46 +02:00
const (
2015-06-28 02:52:01 +02:00
messageTypePing int32 = iota
messageTypePong
messageTypeJoinRelayRequest
messageTypeJoinSessionRequest
messageTypeResponse
messageTypeConnectRequest
messageTypeSessionInvitation
2015-06-24 13:39:46 +02:00
)
2015-06-28 02:52:01 +02:00
type header struct {
magic uint32
messageType int32
messageLength int32
2015-06-24 13:39:46 +02:00
}
type Ping struct{}
type Pong struct{}
2015-06-28 02:52:01 +02:00
type JoinRelayRequest struct{}
type JoinSessionRequest struct {
Key []byte // max:32
}
type Response struct {
Code int32
Message string
}
2015-06-24 13:39:46 +02:00
type ConnectRequest struct {
ID []byte // max:32
}
type SessionInvitation struct {
2015-06-28 02:52:01 +02:00
From []byte // max:32
2015-06-24 13:39:46 +02:00
Key []byte // max:32
Address []byte // max:32
Port uint16
ServerSocket bool
}
2015-07-17 21:17:49 +02:00
2015-07-17 22:49:45 +02:00
func (i SessionInvitation) String() string {
2015-07-17 21:17:49 +02:00
return fmt.Sprintf("%s@%s", syncthingprotocol.DeviceIDFromBytes(i.From), i.AddressString())
}
2015-07-17 22:49:45 +02:00
func (i SessionInvitation) GoString() string {
return i.String()
}
func (i SessionInvitation) AddressString() string {
2015-07-17 21:17:49 +02:00
return fmt.Sprintf("%s:%d", net.IP(i.Address), i.Port)
}