blob: f1891e1e5d5663c97231b0a945da1396bf99e3cb [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 grpc
18
19import (
Don Newtone0d34a82019-11-14 10:58:06 -050020 "encoding/json"
21 "github.com/opencord/ofagent-go/openflow"
Don Newtonb437c6f2019-12-18 11:51:57 -050022 pb "github.com/opencord/voltha-protos/v2/go/voltha"
Don Newton98fd8812019-09-23 15:15:02 -040023 "google.golang.org/grpc"
24 "log"
25)
26import "context"
27
28func streamPacketOut(client pb.VolthaServiceClient) {
29 opt := grpc.EmptyCallOption{}
30 outClient, err := client.StreamPacketsOut(context.Background(), opt)
31 if err != nil {
32
33 log.Printf("Error creating packetout stream %v", err)
34 }
35 packetOutChannel := make(chan pb.PacketOut)
Don Newtone0d34a82019-11-14 10:58:06 -050036 openflow.SetPacketOutChannel(packetOutChannel)
Don Newton98fd8812019-09-23 15:15:02 -040037 for {
38 ofPacketOut := <-packetOutChannel
Don Newtone0d34a82019-11-14 10:58:06 -050039 js, _ := json.Marshal(ofPacketOut)
40 log.Printf("RECEIVED PACKET OUT FROM CHANNEL %s", js)
Don Newton98fd8812019-09-23 15:15:02 -040041 outClient.Send(&ofPacketOut)
42 }
43
44}