forked from skydive-project/skydive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathof13.go
72 lines (61 loc) · 2.1 KB
/
of13.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
* Copyright (C) 2018 Red Hat, Inc.
*
* 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 ofthe 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 specificlanguage governing permissions and
* limitations under the License.
*
*/
package openflow
import (
"github.com/skydive-project/goloxi"
"github.com/skydive-project/goloxi/of13"
)
// OpenFlow13 implements the 1.3 OpenFlow protocol basic methods
var OpenFlow13 OpenFlow13Protocol
// OpenFlow13Protocol implements the basic methods for OpenFlow 1.3
type OpenFlow13Protocol struct {
}
// String returns the OpenFlow protocol version as a string
func (p OpenFlow13Protocol) String() string {
return "OpenFlow 1.3"
}
// GetVersion returns the OpenFlow protocol wire version
func (p OpenFlow13Protocol) GetVersion() uint8 {
return goloxi.VERSION_1_3
}
// NewHello returns a new hello message
func (p OpenFlow13Protocol) NewHello(versionBitmap uint32) goloxi.Message {
msg := of13.NewHello()
elem := of13.NewHelloElemVersionbitmap()
elem.Length = 8
bitmap := of13.NewUint32()
bitmap.Value = versionBitmap
elem.Bitmaps = append(elem.Bitmaps, bitmap)
msg.Elements = append(msg.Elements, elem)
return msg
}
// NewEchoRequest returns a new echo request message
func (p OpenFlow13Protocol) NewEchoRequest() goloxi.Message {
return of13.NewEchoRequest()
}
// NewEchoReply returns a new echo reply message
func (p OpenFlow13Protocol) NewEchoReply() goloxi.Message {
return of13.NewEchoReply()
}
// NewBarrierRequest returns a new barrier request message
func (p OpenFlow13Protocol) NewBarrierRequest() goloxi.Message {
return of13.NewBarrierRequest()
}
// DecodeMessage parses an OpenFlow message
func (p OpenFlow13Protocol) DecodeMessage(data []byte) (goloxi.Message, error) {
return of13.DecodeMessage(data)
}