forked from jackc/pgproto3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssl_request.go
51 lines (41 loc) · 1.13 KB
/
ssl_request.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package pgproto3
import (
"encoding/binary"
"errors"
"github.com/jackc/pgio"
)
const sslRequestNumber = 80877103
type SSLRequest struct {
// if it doesn't work add here any struct
IsSSL bool `json:"is_ssl" yaml:"is_ssl"`
}
// Frontend identifies this message as sendable by a PostgreSQL frontend.
func (*SSLRequest) Frontend() {}
func (dst *SSLRequest) Decode(src []byte) error {
if len(src) < 4 {
return errors.New("ssl request too short")
}
requestCode := binary.BigEndian.Uint32(src)
dst.IsSSL = true
if requestCode != sslRequestNumber {
return errors.New("bad ssl request code")
}
return nil
}
// Encode encodes src into dst. dst will include the 4 byte message length.
func (src *SSLRequest) Encode(dst []byte) []byte {
//println("SSLRequest.Encode")
dst = pgio.AppendInt32(dst, 8)
dst = pgio.AppendInt32(dst, sslRequestNumber)
return dst
}
// MarshalJSON implements encoding/json.Marshaler.
// func (src SSLRequest) MarshalJSON() ([]byte, error) {
// return json.Marshal(struct {
// Type string
// ProtocolVersion uint32
// Parameters map[string]string
// }{
// Type: "SSLRequest",
// })
// }