blob: 3cce700d309f5a1e232f7c40f03da8eb7693b0d1 [file] [log] [blame]
Don Newton98fd8812019-09-23 15:15:02 -04001/*
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
17package openflow
18
19import (
20 "encoding/json"
Don Newton7577f072020-01-06 12:41:11 -050021
Don Newtone0d34a82019-11-14 10:58:06 -050022 ofp "github.com/donNewtonAlpha/goloxi/of13"
Don Newton7577f072020-01-06 12:41:11 -050023 "github.com/opencord/ofagent-go/settings"
24 l "github.com/opencord/voltha-lib-go/v2/pkg/log"
Don Newton98fd8812019-09-23 15:15:02 -040025)
26
Don Newton7577f072020-01-06 12:41:11 -050027func handleGetConfigRequest(request *ofp.GetConfigRequest, DeviceID string, client *Client) {
28 if settings.GetDebug(DeviceID) {
29 js, _ := json.Marshal(request)
30 logger.Debugw("handleGetConfigRequest called", l.Fields{"DeviceID": DeviceID, "request": js})
31 }
Don Newton98fd8812019-09-23 15:15:02 -040032 reply := ofp.NewGetConfigReply()
Don Newtone0d34a82019-11-14 10:58:06 -050033 reply.SetVersion(4)
Don Newton98fd8812019-09-23 15:15:02 -040034 reply.SetXid(request.GetXid())
35 reply.SetMissSendLen(ofp.OFPCMLNoBuffer)
Don Newton7577f072020-01-06 12:41:11 -050036 if settings.GetDebug(DeviceID) {
37 js, _ := json.Marshal(reply)
38 logger.Debugw("handleGetConfigRequest reply", l.Fields{"DeviceID": DeviceID, "reply": js})
39 }
Don Newton98fd8812019-09-23 15:15:02 -040040 client.SendMessage(reply)
41}