mirror of https://github.com/jackc/pgx.git
Messages use Bytes instead of WriteTo
parent
5563e0c825
commit
05f94f7107
6
conn.go
6
conn.go
|
@ -24,9 +24,7 @@ func Connect(options map[string] string) (c *conn, err error) {
|
|||
|
||||
msg := newStartupMessage()
|
||||
msg.options["user"] = "jack"
|
||||
|
||||
msg.WriteTo(c.conn)
|
||||
|
||||
c.conn.Write(msg.Bytes())
|
||||
|
||||
buf := make([]byte, 512)
|
||||
|
||||
|
@ -37,4 +35,4 @@ func Connect(options map[string] string) (c *conn, err error) {
|
|||
println(num)
|
||||
|
||||
return c, nil
|
||||
}
|
||||
}
|
||||
|
|
13
messages.go
13
messages.go
|
@ -2,7 +2,6 @@ package pqx
|
|||
|
||||
import (
|
||||
"encoding/binary"
|
||||
"io"
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -17,8 +16,8 @@ func newStartupMessage() *startupMessage {
|
|||
return &startupMessage{map[string] string{}}
|
||||
}
|
||||
|
||||
func (self *startupMessage) WriteTo(w io.Writer) (n int64, err error) {
|
||||
buf := make([]byte, 8, 128)
|
||||
func (self *startupMessage) Bytes() (buf []byte) {
|
||||
buf = make([]byte, 8, 128)
|
||||
binary.BigEndian.PutUint32(buf[4:8], uint32(protocolVersionNumber))
|
||||
for key, value := range self.options {
|
||||
buf = append(buf, key...)
|
||||
|
@ -28,14 +27,8 @@ func (self *startupMessage) WriteTo(w io.Writer) (n int64, err error) {
|
|||
}
|
||||
buf = append(buf, ("\000")...)
|
||||
binary.BigEndian.PutUint32(buf[0:4], uint32(len(buf)))
|
||||
|
||||
var n32 int
|
||||
n32, err = w.Write(buf)
|
||||
return int64(n32), err
|
||||
return buf
|
||||
}
|
||||
|
||||
type authenticationOk struct {
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue