blob: 6e73d47bbb4481914419a794214b041716ab5b94 [file] [log] [blame]
Shad Ansari01b0e652018-04-05 21:02:53 +00001/*
2 Copyright (C) 2018 Open Networking Foundation
3
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
18#ifndef OPENASF_SERVER_H_
19#define OPENASF_SERVER_H_
20
21#include <grpc++/grpc++.h>
22using grpc::Status;
23#include <openolt.grpc.pb.h>
24
25void RunServer();
26Status Enable_();
27Status ActivateOnu_(uint32_t intf_id, uint32_t onu_id,
28 const char *vendor_id, const char *vendor_specific);
29Status EnablePonIf_(uint32_t intf_id);
30Status OmciMsgOut_(uint32_t intf_id, uint32_t onu_id, const std::string pkt);
31Status FlowAdd_(uint32_t onu_id,
32 uint32_t flow_id, const std::string flow_type,
33 uint32_t access_intf_id, uint32_t network_intf_id,
34 uint32_t gemport_id,
35 const ::openolt::Classifier& classifier,
36 const ::openolt::Action& action);
37
38static Status SchedAdd_(int intf_id, int onu_id, int agg_port_id);
39
40static inline int mk_sched_id(int onu_id) {
41 return 1023 + onu_id;
42}
43
44static inline int mk_agg_port_id(int onu_id) {
45 return 1023 + onu_id;
46}
47
48#endif