Don Newton | 98fd881 | 2019-09-23 15:15:02 -0400 | [diff] [blame] | 1 | /* |
| 2 | Copyright 2017 the original author or authors. |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | package openflow |
| 18 | |
| 19 | import ( |
| 20 | "encoding/json" |
Don Newton | 7577f07 | 2020-01-06 12:41:11 -0500 | [diff] [blame^] | 21 | |
| 22 | "github.com/opencord/ofagent-go/settings" |
| 23 | |
Don Newton | e0d34a8 | 2019-11-14 10:58:06 -0500 | [diff] [blame] | 24 | ofp "github.com/donNewtonAlpha/goloxi/of13" |
Don Newton | 7577f07 | 2020-01-06 12:41:11 -0500 | [diff] [blame^] | 25 | l "github.com/opencord/voltha-lib-go/v2/pkg/log" |
Don Newton | 98fd881 | 2019-09-23 15:15:02 -0400 | [diff] [blame] | 26 | ) |
| 27 | |
Don Newton | 7577f07 | 2020-01-06 12:41:11 -0500 | [diff] [blame^] | 28 | func handleBarrierRequest(request *ofp.BarrierRequest, DeviceID string, client *Client) { |
| 29 | |
| 30 | if settings.GetDebug(DeviceID) { |
| 31 | js, _ := json.Marshal(request) |
| 32 | logger.Debugw("handleBarrierRequest called with %s", l.Fields{"DeviceID": DeviceID, "request": js}) |
| 33 | } |
Don Newton | 98fd881 | 2019-09-23 15:15:02 -0400 | [diff] [blame] | 34 | reply := ofp.NewBarrierReply() |
Don Newton | e0d34a8 | 2019-11-14 10:58:06 -0500 | [diff] [blame] | 35 | reply.SetVersion(4) |
Don Newton | 98fd881 | 2019-09-23 15:15:02 -0400 | [diff] [blame] | 36 | reply.SetXid(request.GetXid()) |
| 37 | client.SendMessage(reply) |
| 38 | } |