forked from skydive-project/skydive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathof11.go
65 lines (54 loc) · 1.89 KB
/
of11.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
/*
* 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/of11"
)
// OpenFlow11 implements the 1.1 OpenFlow protocol basic methods
var OpenFlow11 OpenFlow11Protocol
// OpenFlow11Protocol implements the basic methods for OpenFlow 1.1
type OpenFlow11Protocol struct {
}
// String returns the OpenFlow protocol version as a string
func (p OpenFlow11Protocol) String() string {
return "OpenFlow 1.1"
}
// GetVersion returns the OpenFlow protocol wire version
func (p OpenFlow11Protocol) GetVersion() uint8 {
return goloxi.VERSION_1_1
}
// NewHello returns a new hello message
func (p OpenFlow11Protocol) NewHello(versionBitmap uint32) goloxi.Message {
return of11.NewHello()
}
// NewEchoRequest returns a new echo request message
func (p OpenFlow11Protocol) NewEchoRequest() goloxi.Message {
return of11.NewEchoRequest()
}
// NewEchoReply returns a new echo reply message
func (p OpenFlow11Protocol) NewEchoReply() goloxi.Message {
return of11.NewEchoReply()
}
// NewBarrierRequest returns a new barrier request message
func (p OpenFlow11Protocol) NewBarrierRequest() goloxi.Message {
return of11.NewBarrierRequest()
}
// DecodeMessage parses an OpenFlow message
func (p OpenFlow11Protocol) DecodeMessage(data []byte) (goloxi.Message, error) {
return of11.DecodeMessage(data)
}