aboutsummaryrefslogtreecommitdiff
path: root/multiplexer
diff options
context:
space:
mode:
authorIan Cottrell <iancottrell@google.com>2015-06-25 16:08:46 +0100
committerIan Cottrell <iancottrell@google.com>2015-06-25 16:13:27 +0100
commit6fefc664d79e759eec71d3a8256bdb0aad85d29f (patch)
tree9380cbc593eb83167935d390081235dda0b251c6 /multiplexer
parent9acf6d4c84634130e633a4840d05f421d30532f8 (diff)
downloadgpu-6fefc664d79e759eec71d3a8256bdb0aad85d29f.tar.gz
Rebuild all _binary files with new schema features
Change-Id: Ic9d996dc4fa71aa6a110228ceb77ffc2e2178c71
Diffstat (limited to 'multiplexer')
-rw-r--r--multiplexer/multiplexer_binary.go18
1 files changed, 12 insertions, 6 deletions
diff --git a/multiplexer/multiplexer_binary.go b/multiplexer/multiplexer_binary.go
index bbd6e5329..69bb450ef 100644
--- a/multiplexer/multiplexer_binary.go
+++ b/multiplexer/multiplexer_binary.go
@@ -64,8 +64,10 @@ func (*binaryClassmsgCloseChannel) Skip(d binary.Decoder) error { return doSkipm
func (*binaryClassmsgCloseChannel) Schema() *schema.Class { return schemamsgCloseChannel }
var schemamsgCloseChannel = &schema.Class{
- TypeID: binaryIDmsgCloseChannel,
- Name: "msgCloseChannel",
+ TypeID: binaryIDmsgCloseChannel,
+ Package: "multiplexer",
+ Name: "msgCloseChannel",
+ Display: "msgCloseChannel",
Fields: []schema.Field{
{Declared: "channelId", Type: &schema.Primitive{Name: "channelId", Method: schema.Uint32}},
},
@@ -133,8 +135,10 @@ func (*binaryClassmsgData) Skip(d binary.Decoder) error { return doSkipmsgData(d
func (*binaryClassmsgData) Schema() *schema.Class { return schemamsgData }
var schemamsgData = &schema.Class{
- TypeID: binaryIDmsgData,
- Name: "msgData",
+ TypeID: binaryIDmsgData,
+ Package: "multiplexer",
+ Name: "msgData",
+ Display: "msgData",
Fields: []schema.Field{
{Declared: "c", Type: &schema.Primitive{Name: "channelId", Method: schema.Uint32}},
{Declared: "d", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "byte", Method: schema.Uint8}}},
@@ -182,8 +186,10 @@ func (*binaryClassmsgOpenChannel) Skip(d binary.Decoder) error { return doSkipms
func (*binaryClassmsgOpenChannel) Schema() *schema.Class { return schemamsgOpenChannel }
var schemamsgOpenChannel = &schema.Class{
- TypeID: binaryIDmsgOpenChannel,
- Name: "msgOpenChannel",
+ TypeID: binaryIDmsgOpenChannel,
+ Package: "multiplexer",
+ Name: "msgOpenChannel",
+ Display: "msgOpenChannel",
Fields: []schema.Field{
{Declared: "channelId", Type: &schema.Primitive{Name: "channelId", Method: schema.Uint32}},
},