blob: db064d34903439f8cf2589d12386df95a8d45d93 [file] [log] [blame]
Shad Ansari01b0e652018-04-05 21:02:53 +00001/*
Nicolas Palpacuer3cad49d2018-07-02 14:03:24 -04002 Copyright (C) 2018 Open Networking Foundation
Shad Ansari01b0e652018-04-05 21:02:53 +00003
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
Shad Ansarib7b0ced2018-05-11 21:53:32 +000018#ifndef OPENOLT_INDICATIONS_H_
19#define OPENOLT_INDICATIONS_H_
20
Shad Ansari01b0e652018-04-05 21:02:53 +000021#include <grpc++/grpc++.h>
22#include <openolt.grpc.pb.h>
23#include "Queue.h"
24
Nicolas Palpacuer967438f2018-09-07 14:41:54 -040025extern "C" {
26 #include <bcm_dev_log_task.h>
27}
28
Shad Ansari01b0e652018-04-05 21:02:53 +000029extern Queue<openolt::Indication> oltIndQ;
30extern grpc::Status SubscribeIndication();
Nicolas Palpacuer967438f2018-09-07 14:41:54 -040031extern dev_log_id openolt_log_id;
32extern dev_log_id omci_log_id;
Shad Ansari01b0e652018-04-05 21:02:53 +000033
34#endif