2016-05-20 03:05:37 +03:00
|
|
|
// Copyright 2016 The go-libvirt Authors.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2016-05-20 05:56:27 +03:00
|
|
|
// Package libvirttest provides a mock libvirt server for RPC testing.
|
|
|
|
package libvirttest
|
2016-05-20 03:05:37 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/binary"
|
|
|
|
"net"
|
|
|
|
"sync/atomic"
|
2016-05-20 05:56:27 +03:00
|
|
|
|
2017-05-04 18:17:25 +03:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2017-08-31 18:21:31 +03:00
|
|
|
|
|
|
|
"github.com/digitalocean/go-libvirt/internal/constants"
|
2016-05-20 03:05:37 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
var testDomainResponse = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x38, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0x17, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
|
|
|
|
// domain name ("test")
|
|
|
|
0x00, 0x00, 0x00, 0x04, 0x74, 0x65, 0x73, 0x74,
|
|
|
|
|
|
|
|
// uuid (dc229f87d4de47198cfd2e21c6105b01)
|
|
|
|
0xdc, 0x22, 0x9f, 0x87, 0xd4, 0xde, 0x47, 0x19,
|
|
|
|
0x8c, 0xfd, 0x2e, 0x21, 0xc6, 0x10, 0x5b, 0x01,
|
|
|
|
|
|
|
|
// domain id (14)
|
|
|
|
0x00, 0x00, 0x00, 0x0e,
|
|
|
|
}
|
|
|
|
|
|
|
|
var testRegisterEvent = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x20, // length
|
|
|
|
0x20, 0x00, 0x80, 0x87, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0x04, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
0x00, 0x00, 0x00, 0x01, // callback id
|
|
|
|
}
|
|
|
|
|
|
|
|
var testDeregisterEvent = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x1c, // length
|
|
|
|
0x20, 0x00, 0x80, 0x87, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0x05, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
}
|
|
|
|
|
|
|
|
var testAuthReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x1c, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0x42, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
}
|
|
|
|
|
|
|
|
var testConnectReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x1c, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0x01, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
}
|
|
|
|
|
|
|
|
var testDisconnectReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x1c, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0x02, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
}
|
|
|
|
|
2016-08-19 21:31:59 +03:00
|
|
|
var testMigrateReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x20, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x01, 0x31, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
|
|
|
|
// cookie out: 0
|
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
|
}
|
|
|
|
|
2016-05-20 03:05:37 +03:00
|
|
|
var testRunReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x74, // length
|
|
|
|
0x20, 0x00, 0x80, 0x87, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0x01, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
|
|
|
|
// {"return":{"qemu":{"micro":1,"minor":5,"major":2},"package":""},"id":"libvirt-53"}
|
|
|
|
0x00, 0x00, 0x00, 0x52, 0x7b, 0x22, 0x72, 0x65,
|
|
|
|
0x74, 0x75, 0x72, 0x6e, 0x22, 0x3a, 0x7b, 0x22,
|
|
|
|
0x71, 0x65, 0x6d, 0x75, 0x22, 0x3a, 0x7b, 0x22,
|
|
|
|
0x6d, 0x69, 0x63, 0x72, 0x6f, 0x22, 0x3a, 0x31,
|
|
|
|
0x2c, 0x22, 0x6d, 0x69, 0x6e, 0x6f, 0x72, 0x22,
|
|
|
|
0x3a, 0x35, 0x2c, 0x22, 0x6d, 0x61, 0x6a, 0x6f,
|
|
|
|
0x72, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x70,
|
|
|
|
0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x22, 0x3a,
|
|
|
|
0x22, 0x22, 0x7d, 0x2c, 0x22, 0x69, 0x64, 0x22,
|
|
|
|
0x3a, 0x22, 0x6c, 0x69, 0x62, 0x76, 0x69, 0x72,
|
|
|
|
0x74, 0x2d, 0x35, 0x33, 0x22, 0x7d,
|
|
|
|
|
|
|
|
// All trailing NULL characters should be removed
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
}
|
|
|
|
|
2016-07-19 19:27:31 +03:00
|
|
|
var testRunReplyFail = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x8c, // length
|
|
|
|
0x20, 0x00, 0x80, 0x87, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0x01, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x0a, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
|
|
|
|
// {"id":"libvirt-68","error":{"class":"CommandNotFound","desc":"The command drive-foo has not been found"}}`
|
|
|
|
0x00, 0x00, 0x00, 0x69, 0x7b, 0x22, 0x69, 0x64,
|
|
|
|
0x22, 0x3a, 0x22, 0x6c, 0x69, 0x62, 0x76, 0x69,
|
|
|
|
0x72, 0x74, 0x2d, 0x36, 0x38, 0x22, 0x2c, 0x22,
|
|
|
|
0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x3a, 0x7b,
|
|
|
|
0x22, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x22, 0x3a,
|
|
|
|
0x22, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
|
|
|
|
0x4e, 0x6f, 0x74, 0x46, 0x6f, 0x75, 0x6e, 0x64,
|
|
|
|
0x22, 0x2c, 0x22, 0x64, 0x65, 0x73, 0x63, 0x22,
|
|
|
|
0x3a, 0x22, 0x54, 0x68, 0x65, 0x20, 0x63, 0x6f,
|
|
|
|
0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x64, 0x72,
|
|
|
|
0x69, 0x76, 0x65, 0x2d, 0x66, 0x6f, 0x6f, 0x20,
|
|
|
|
0x68, 0x61, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20,
|
|
|
|
0x62, 0x65, 0x65, 0x6e, 0x20, 0x66, 0x6f, 0x75,
|
|
|
|
0x6e, 0x64, 0x22, 0x7d, 0x7d, 0x00, 0x00, 0x00,
|
|
|
|
}
|
|
|
|
|
2016-08-02 01:43:50 +03:00
|
|
|
var testSetSpeedReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x1c, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0xcf, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
}
|
|
|
|
|
2016-05-20 03:05:37 +03:00
|
|
|
var testDomainsReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x6c, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x01, 0x11, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
|
|
|
|
// struct of domains
|
|
|
|
0x00, 0x00, 0x00, 0x02,
|
|
|
|
|
|
|
|
// first domain
|
|
|
|
// name - aaaaaaa-1
|
|
|
|
0x00, 0x00, 0x00, 0x09, 0x61, 0x61, 0x61, 0x61,
|
|
|
|
0x61, 0x61, 0x61, 0x2d, 0x31, 0x00, 0x00, 0x00,
|
|
|
|
// uuid - dc:32:9f:87:d4:de:47:19:8c:fd:2e:21:c6:10:5b:01
|
|
|
|
0xdc, 0x32, 0x9f, 0x87, 0xd4, 0xde, 0x47, 0x19,
|
|
|
|
0x8c, 0xfd, 0x2e, 0x21, 0xc6, 0x10, 0x5b, 0x01,
|
|
|
|
// id
|
|
|
|
0x00, 0x00, 0x00, 0x01,
|
|
|
|
|
|
|
|
// second domain
|
|
|
|
// name - aaaaaaa-2
|
|
|
|
0x00, 0x00, 0x00, 0x09, 0x61, 0x61, 0x61, 0x61,
|
|
|
|
0x61, 0x61, 0x61, 0x2d, 0x32, 0x00, 0x00, 0x00,
|
|
|
|
// uuid - dc:22:9f:87:d4:de:47:19:8c:fd:2e:21:c6:10:5b:01
|
|
|
|
0xdc, 0x22, 0x9f, 0x87, 0xd4, 0xde, 0x47, 0x19, 0x8c,
|
|
|
|
0xfd, 0x2e, 0x21, 0xc6, 0x10, 0x5b, 0x01, 0x00, 0x00,
|
|
|
|
// id
|
|
|
|
0x00, 0x02, 0x00,
|
|
|
|
|
|
|
|
// count of domains returned
|
|
|
|
0x00, 0x00, 0x02,
|
|
|
|
}
|
|
|
|
|
2017-06-02 20:28:20 +03:00
|
|
|
var testDomainMemoryStatsReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x38, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0x9f, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
|
|
|
|
// tag 6 val 1048576
|
|
|
|
// tag 7 val 91272
|
|
|
|
0x00, 0x00, 0x00, 0x02,
|
|
|
|
0x00, 0x00, 0x00, 0x06,
|
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x10, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x07,
|
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x01, 0x64, 0x88,
|
|
|
|
}
|
|
|
|
|
2016-12-02 20:54:04 +03:00
|
|
|
var testDomainStateReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x24, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0xd4, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
0x00, 0x00, 0x00, 0x01, // state
|
|
|
|
0x00, 0x00, 0x00, 0x01, // reason
|
|
|
|
}
|
|
|
|
|
2017-01-20 05:40:31 +03:00
|
|
|
var testSecretsReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x40, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x01, 0x1f, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
|
|
|
|
// list of secrets
|
|
|
|
0x00, 0x00, 0x00, 0x01,
|
|
|
|
|
|
|
|
// first secret
|
|
|
|
// UUID: 19fdc2f2fa64-46f3bacf42a8aafca6dd
|
|
|
|
0x19, 0xfd, 0xc2, 0xf2, 0xfa, 0x64, 0x46, 0xf3,
|
|
|
|
0xba, 0xcf, 0x42, 0xa8, 0xaa, 0xfc, 0xa6, 0xdd,
|
|
|
|
|
|
|
|
// usage type: (1, volume)
|
|
|
|
0x00, 0x00, 0x00, 0x01,
|
|
|
|
|
|
|
|
// usage id: "/tmp"
|
|
|
|
0x00, 0x00, 0x00, 0x04, 0x2f, 0x74, 0x6d, 0x70,
|
|
|
|
|
|
|
|
// end of secrets
|
|
|
|
0x00, 0x00, 0x00, 0x01,
|
|
|
|
}
|
|
|
|
|
2017-01-10 00:54:30 +03:00
|
|
|
var testStoragePoolLookup = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x38, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0x54, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
|
|
|
|
// pool: name = default
|
|
|
|
0x00, 0x00, 0x00, 0x07, 0x64, 0x65, 0x66, 0x61,
|
|
|
|
0x75, 0x6c, 0x74, 0x00,
|
|
|
|
|
|
|
|
// uuid = bb30a11c084648278bba3e6b5cf1b65f
|
|
|
|
0xbb, 0x30, 0xa1, 0x1c, 0x08, 0x46, 0x48, 0x27,
|
|
|
|
0x8b, 0xba, 0x3e, 0x6b, 0x5c, 0xf1, 0xb6, 0x5f,
|
|
|
|
}
|
|
|
|
|
|
|
|
var testStoragePoolRefresh = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x1c, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0x53, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
}
|
|
|
|
|
2017-01-07 00:58:27 +03:00
|
|
|
var testListPoolsReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x40, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x01, 0x19, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
|
|
|
|
0x00, 0x00, 0x00, 0x01, // pools
|
|
|
|
|
|
|
|
// first pool, name: "default"
|
|
|
|
0x00, 0x00, 0x00, 0x07, 0x64, 0x65, 0x66, 0x61,
|
|
|
|
0x75, 0x6c, 0x74, 0x00,
|
|
|
|
|
|
|
|
// uuid: bb30a11c084648278bba3e6b5cf1b65f
|
|
|
|
0xbb, 0x30, 0xa1, 0x1c, 0x08, 0x46, 0x48, 0x27,
|
|
|
|
0x8b, 0xba, 0x3e, 0x6b, 0x5c, 0xf1, 0xb6, 0x5f,
|
|
|
|
|
|
|
|
0x00, 0x00, 0x00, 0x01, // count
|
|
|
|
}
|
|
|
|
|
2016-09-29 00:29:46 +03:00
|
|
|
var testUndefineReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x1c, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0xe7, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
}
|
|
|
|
|
2016-11-03 06:43:42 +03:00
|
|
|
var testDestroyReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x1c, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0xea, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
}
|
|
|
|
|
2016-05-20 03:05:37 +03:00
|
|
|
var testVersionReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x24, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0x9d, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x4d, 0xfc, // version (1003004)
|
|
|
|
}
|
|
|
|
|
2016-12-09 19:49:14 +03:00
|
|
|
var testDefineXML = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x38, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x01, 0x5e, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
0x00, 0x00, 0x00, 0x04, // dom
|
|
|
|
0x74, 0x65, 0x73, 0x74, // name
|
|
|
|
// uuid
|
|
|
|
0xaf, 0xc2, 0xef, 0x71, 0x66, 0xe0, 0x45, 0xa7,
|
|
|
|
0xa5, 0xec, 0xd8, 0xba, 0x1e, 0xa8, 0x17, 0x7d,
|
|
|
|
0xff, 0xff, 0xff, 0xff, // id
|
|
|
|
}
|
|
|
|
|
2017-05-04 18:17:25 +03:00
|
|
|
var testCreateWithFlags = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x38, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x01, 0x5e, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
0x00, 0x00, 0x00, 0x04, // dom
|
|
|
|
0x74, 0x65, 0x73, 0x74, // name
|
|
|
|
// uuid
|
|
|
|
0xaf, 0xc2, 0xef, 0x71, 0x66, 0xe0, 0x45, 0xa7,
|
|
|
|
0xa5, 0xec, 0xd8, 0xba, 0x1e, 0xa8, 0x17, 0x7d,
|
|
|
|
0xff, 0xff, 0xff, 0xff, // id
|
|
|
|
}
|
|
|
|
|
2017-05-04 18:39:45 +03:00
|
|
|
var testShutdownReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x1c, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0xea, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
}
|
|
|
|
|
2017-05-04 19:30:22 +03:00
|
|
|
var testRebootReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x1c, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0xea, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x01, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
}
|
|
|
|
|
2017-08-31 18:21:31 +03:00
|
|
|
var testSetBlockIoTuneReply = []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x1c, // length
|
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0xfc, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x00, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
}
|
|
|
|
|
|
|
|
// This result block was obtained by calling `fmt.Printf("%#v", r.Payload)` on
|
|
|
|
// the result returned by an actual call to GetBlockIoTune, and then adding the
|
|
|
|
// standard header to the beginning. The length parameter has to be correct!
|
|
|
|
var testGetBlockIoTuneReply = []byte{
|
2017-09-15 17:48:46 +03:00
|
|
|
0x00, 0x00, 0x03, 0x00, // length
|
2017-08-31 18:21:31 +03:00
|
|
|
0x20, 0x00, 0x80, 0x86, // program
|
|
|
|
0x00, 0x00, 0x00, 0x01, // version
|
|
|
|
0x00, 0x00, 0x00, 0xfd, // procedure
|
|
|
|
0x00, 0x00, 0x00, 0x00, // type
|
|
|
|
0x00, 0x00, 0x00, 0x00, // serial
|
|
|
|
0x00, 0x00, 0x00, 0x00, // status
|
|
|
|
|
2017-09-15 17:48:46 +03:00
|
|
|
0x0, 0x0, 0x0, 0x14, // 14 TypedParams follow
|
2017-08-31 18:21:31 +03:00
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0xf, // field name is 15 bytes, padded to a multiple of 4
|
|
|
|
0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4, // type
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, // value
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0xe,
|
|
|
|
0x72, 0x65, 0x61, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0xf,
|
|
|
|
0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xa1, 0x20,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0xe,
|
|
|
|
0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x69, 0x6f, 0x70, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0xd,
|
|
|
|
0x72, 0x65, 0x61, 0x64, 0x5f, 0x69, 0x6f, 0x70, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x0, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0xe,
|
|
|
|
0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x6f, 0x70, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0x13,
|
|
|
|
0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x5f, 0x6d, 0x61, 0x78, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0x12,
|
|
|
|
0x72, 0x65, 0x61, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x5f, 0x6d, 0x61, 0x78, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0x13,
|
|
|
|
0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x5f, 0x6d, 0x61, 0x78, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, 0x50,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0x12,
|
|
|
|
0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x69, 0x6f, 0x70, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x5f, 0x6d, 0x61, 0x78, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0x11,
|
|
|
|
0x72, 0x65, 0x61, 0x64, 0x5f, 0x69, 0x6f, 0x70, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x5f, 0x6d, 0x61, 0x78, 0x0, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0x12,
|
|
|
|
0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x6f, 0x70, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x5f, 0x6d, 0x61, 0x78, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0xd,
|
|
|
|
0x73, 0x69, 0x7a, 0x65, 0x5f, 0x69, 0x6f, 0x70, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x0, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0x1a,
|
|
|
|
0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0x19,
|
|
|
|
0x72, 0x65, 0x61, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x0, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0x1a,
|
|
|
|
0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0x19,
|
|
|
|
0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x69, 0x6f, 0x70, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x0, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0x18,
|
|
|
|
0x72, 0x65, 0x61, 0x64, 0x5f, 0x69, 0x6f, 0x70, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
|
|
|
0x0, 0x0, 0x0, 0x19,
|
|
|
|
0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x6f, 0x70, 0x73, 0x5f, 0x73, 0x65, 0x63, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x0, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x4,
|
|
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
|
|
|
2017-09-15 17:48:46 +03:00
|
|
|
0x0, 0x0, 0x0, 0xa, // This is field "group_name", a string (type 7), whose value is "somename"
|
|
|
|
0x67, 0x72, 0x6F, 0x75, 0x70, 0x5F, 0x6E, 0x61, 0x6D, 0x65, 0x0, 0x0,
|
|
|
|
0x0, 0x0, 0x0, 0x7,
|
|
|
|
0x0, 0x0, 0x0, 0x8,
|
|
|
|
0x73, 0x6F, 0x6D, 0x65, 0x6E, 0x61, 0x6D, 0x65,
|
|
|
|
|
2017-08-31 18:21:31 +03:00
|
|
|
0x0, 0x0, 0x0, 0x0, // End of TypedParams
|
|
|
|
}
|
|
|
|
|
2016-05-20 05:56:27 +03:00
|
|
|
// MockLibvirt provides a mock libvirt server for testing.
|
|
|
|
type MockLibvirt struct {
|
2016-05-20 03:05:37 +03:00
|
|
|
net.Conn
|
2016-05-20 05:56:27 +03:00
|
|
|
Test net.Conn
|
2016-07-19 19:27:31 +03:00
|
|
|
Fail bool
|
2016-05-20 03:05:37 +03:00
|
|
|
serial uint32
|
|
|
|
}
|
|
|
|
|
2016-05-20 05:56:27 +03:00
|
|
|
// New creates a new mock Libvirt server.
|
|
|
|
func New() *MockLibvirt {
|
2016-05-20 03:05:37 +03:00
|
|
|
serv, conn := net.Pipe()
|
|
|
|
|
2016-05-20 05:56:27 +03:00
|
|
|
m := &MockLibvirt{
|
2016-05-20 03:05:37 +03:00
|
|
|
Conn: conn,
|
2016-05-20 05:56:27 +03:00
|
|
|
Test: serv,
|
2016-05-20 03:05:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
go m.handle(serv)
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2016-05-20 05:56:27 +03:00
|
|
|
func (m *MockLibvirt) handle(conn net.Conn) {
|
2016-05-20 03:05:37 +03:00
|
|
|
for {
|
2016-05-20 05:56:27 +03:00
|
|
|
// packetLengthSize + headerSize
|
|
|
|
buf := make([]byte, 28)
|
2016-05-20 03:05:37 +03:00
|
|
|
conn.Read(buf)
|
|
|
|
|
|
|
|
// extract program
|
|
|
|
prog := binary.BigEndian.Uint32(buf[4:8])
|
|
|
|
|
|
|
|
// extract procedure
|
|
|
|
proc := binary.BigEndian.Uint32(buf[12:16])
|
|
|
|
|
|
|
|
switch prog {
|
2017-11-03 02:42:44 +03:00
|
|
|
case constants.Program:
|
2016-05-20 03:05:37 +03:00
|
|
|
m.handleRemote(proc, conn)
|
2016-05-20 05:56:27 +03:00
|
|
|
case constants.ProgramQEMU:
|
2016-05-20 03:05:37 +03:00
|
|
|
m.handleQEMU(proc, conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-20 05:56:27 +03:00
|
|
|
func (m *MockLibvirt) handleRemote(procedure uint32, conn net.Conn) {
|
2016-05-20 03:05:37 +03:00
|
|
|
switch procedure {
|
2016-05-20 05:56:27 +03:00
|
|
|
case constants.ProcAuthList:
|
2016-05-20 03:05:37 +03:00
|
|
|
conn.Write(m.reply(testAuthReply))
|
2017-01-10 00:54:30 +03:00
|
|
|
case constants.ProcStoragePoolRefresh:
|
|
|
|
conn.Write(m.reply(testStoragePoolRefresh))
|
|
|
|
case constants.ProcStoragePoolLookupByName:
|
|
|
|
conn.Write(m.reply(testStoragePoolLookup))
|
2016-05-20 05:56:27 +03:00
|
|
|
case constants.ProcConnectOpen:
|
2016-05-20 03:05:37 +03:00
|
|
|
conn.Write(m.reply(testConnectReply))
|
2016-05-20 05:56:27 +03:00
|
|
|
case constants.ProcConnectClose:
|
2016-05-20 03:05:37 +03:00
|
|
|
conn.Write(m.reply(testDisconnectReply))
|
2016-05-20 05:56:27 +03:00
|
|
|
case constants.ProcConnectGetLibVersion:
|
2016-05-20 03:05:37 +03:00
|
|
|
conn.Write(m.reply(testVersionReply))
|
2016-05-20 05:56:27 +03:00
|
|
|
case constants.ProcDomainLookupByName:
|
2016-05-20 03:05:37 +03:00
|
|
|
conn.Write(m.reply(testDomainResponse))
|
2016-05-20 05:56:27 +03:00
|
|
|
case constants.ProcConnectListAllDomains:
|
2016-05-20 03:05:37 +03:00
|
|
|
conn.Write(m.reply(testDomainsReply))
|
2017-01-07 00:58:27 +03:00
|
|
|
case constants.ProcConnectListAllStoragePools:
|
|
|
|
conn.Write(m.reply(testListPoolsReply))
|
2017-01-20 05:40:31 +03:00
|
|
|
case constants.ProcConnectListAllSecrets:
|
|
|
|
conn.Write(m.reply(testSecretsReply))
|
2016-12-02 20:54:04 +03:00
|
|
|
case constants.ProcDomainGetState:
|
|
|
|
conn.Write(m.reply(testDomainStateReply))
|
2017-06-02 20:28:20 +03:00
|
|
|
case constants.ProcDomainMemoryStats:
|
|
|
|
conn.Write(m.reply(testDomainMemoryStatsReply))
|
2016-08-02 01:43:50 +03:00
|
|
|
case constants.ProcDomainMigrateSetMaxSpeed:
|
|
|
|
conn.Write(m.reply(testSetSpeedReply))
|
2017-11-03 02:42:44 +03:00
|
|
|
case constants.ProcDomainMigratePerform3Params:
|
2016-08-19 21:31:59 +03:00
|
|
|
conn.Write(m.reply(testMigrateReply))
|
2016-09-29 00:29:46 +03:00
|
|
|
case constants.ProcDomainUndefineFlags:
|
|
|
|
conn.Write(m.reply(testUndefineReply))
|
2016-11-03 06:43:42 +03:00
|
|
|
case constants.ProcDomainDestroyFlags:
|
|
|
|
conn.Write(m.reply(testDestroyReply))
|
2016-12-09 19:49:14 +03:00
|
|
|
case constants.ProcDomainDefineXMLFlags:
|
|
|
|
conn.Write(m.reply(testDefineXML))
|
2017-05-04 19:30:22 +03:00
|
|
|
case constants.ProcDomainReboot:
|
|
|
|
conn.Write(m.reply(testRebootReply))
|
|
|
|
case constants.ProcDomainReset:
|
|
|
|
conn.Write(m.reply(testRebootReply))
|
2017-05-04 18:17:25 +03:00
|
|
|
case constants.ProcDomainCreateWithFlags:
|
|
|
|
conn.Write(m.reply(testCreateWithFlags))
|
2017-05-04 18:39:45 +03:00
|
|
|
case constants.ProcDomainShutdownFlags:
|
|
|
|
conn.Write(m.reply(testShutdownReply))
|
2017-08-31 18:21:31 +03:00
|
|
|
case constants.ProcDomainSetBlockIOTune:
|
|
|
|
conn.Write(m.reply(testSetBlockIoTuneReply))
|
|
|
|
case constants.ProcDomainGetBlockIOTune:
|
|
|
|
conn.Write(m.reply(testGetBlockIoTuneReply))
|
2017-05-04 18:17:25 +03:00
|
|
|
default:
|
|
|
|
fmt.Fprintln(os.Stderr, "unknown procedure", procedure)
|
2016-05-20 03:05:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-20 05:56:27 +03:00
|
|
|
func (m *MockLibvirt) handleQEMU(procedure uint32, conn net.Conn) {
|
2016-05-20 03:05:37 +03:00
|
|
|
switch procedure {
|
2016-05-20 05:56:27 +03:00
|
|
|
case constants.QEMUConnectDomainMonitorEventRegister:
|
2016-05-20 03:05:37 +03:00
|
|
|
conn.Write(m.reply(testRegisterEvent))
|
2016-05-20 05:56:27 +03:00
|
|
|
case constants.QEMUConnectDomainMonitorEventDeregister:
|
2016-05-20 03:05:37 +03:00
|
|
|
conn.Write(m.reply(testDeregisterEvent))
|
2016-05-20 05:56:27 +03:00
|
|
|
case constants.QEMUDomainMonitor:
|
2016-07-19 19:27:31 +03:00
|
|
|
if m.Fail {
|
|
|
|
conn.Write(m.reply(testRunReplyFail))
|
|
|
|
} else {
|
|
|
|
conn.Write(m.reply(testRunReply))
|
|
|
|
}
|
2016-05-20 03:05:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// reply automatically injects the correct serial
|
|
|
|
// number into the provided response buffer.
|
2016-05-20 05:56:27 +03:00
|
|
|
func (m *MockLibvirt) reply(buf []byte) []byte {
|
2016-05-20 03:05:37 +03:00
|
|
|
atomic.AddUint32(&m.serial, 1)
|
|
|
|
binary.BigEndian.PutUint32(buf[20:24], m.serial)
|
|
|
|
|
|
|
|
return buf
|
|
|
|
}
|