blob: 3b7bf2fe1827d6640386d2b1aeba9cc8a6abbf28 [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) handleRoleRequest(request *ofp.RoleRequest) {
26 if logger.V(log.DebugLevel) {
Don Newton7577f072020-01-06 12:41:11 -050027 js, _ := json.Marshal(request)
David K. Bainbridge157bdab2020-01-16 14:38:05 -080028 logger.Debugw("handleRoleRequest called",
29 log.Fields{
30 "device-id": ofc.DeviceID,
31 "request": js})
Don Newton7577f072020-01-06 12:41:11 -050032 }
Don Newton98fd8812019-09-23 15:15:02 -040033 reply := ofp.NewRoleReply()
34 reply.SetXid(request.GetXid())
35 reply.SetVersion(request.GetVersion())
36 reply.SetRole(request.GetRole())
37 reply.SetGenerationId(request.GetGenerationId())
David K. Bainbridge157bdab2020-01-16 14:38:05 -080038 ofc.SendMessage(reply)
Don Newton98fd8812019-09-23 15:15:02 -040039}