blob: d6af20ad67e31a0ead2930183b31190d7a9fcbce [file] [log] [blame]
Don Newton98fd8812019-09-23 15:15:02 -04001/*
David K. Bainbridge157bdab2020-01-16 14:38:05 -08002 Copyright 2020 the original author or authors.
Don Newton98fd8812019-09-23 15:15:02 -04003
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
17package openflow
18
19import (
20 "encoding/json"
Don Newtone0d34a82019-11-14 10:58:06 -050021 ofp "github.com/donNewtonAlpha/goloxi/of13"
David K. Bainbridge157bdab2020-01-16 14:38:05 -080022 "github.com/opencord/voltha-lib-go/v2/pkg/log"
Don Newton98fd8812019-09-23 15:15:02 -040023)
24
David K. Bainbridge157bdab2020-01-16 14:38:05 -080025func (ofc *OFClient) handleBarrierRequest(request *ofp.BarrierRequest) {
Don Newton7577f072020-01-06 12:41:11 -050026
David K. Bainbridge157bdab2020-01-16 14:38:05 -080027 if logger.V(log.DebugLevel) {
Don Newton7577f072020-01-06 12:41:11 -050028 js, _ := json.Marshal(request)
David K. Bainbridge157bdab2020-01-16 14:38:05 -080029 logger.Debugw("handleBarrierRequest called with %s",
30 log.Fields{
31 "device-id": ofc.DeviceID,
32 "request": js})
Don Newton7577f072020-01-06 12:41:11 -050033 }
Don Newton98fd8812019-09-23 15:15:02 -040034 reply := ofp.NewBarrierReply()
Don Newtone0d34a82019-11-14 10:58:06 -050035 reply.SetVersion(4)
Don Newton98fd8812019-09-23 15:15:02 -040036 reply.SetXid(request.GetXid())
David K. Bainbridge157bdab2020-01-16 14:38:05 -080037 ofc.SendMessage(reply)
Don Newton98fd8812019-09-23 15:15:02 -040038}