1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #ifndef ROUTING_H_
- #define ROUTING_H_
- #include <stdint.h>
- #include "linux/msm_ipa.h"
- #include "Feature.h"
- using namespace std;
- class RoutingDriverWrapper: public Feature
- {
- public:
- bool AddRoutingRule(struct ipa_ioc_add_rt_rule *ruleTable);
- bool AddRoutingRule(ipa_ioc_add_rt_rule_v2 *ruleTable_v2);
- bool DeleteRoutingRule(struct ipa_ioc_del_rt_rule *ruleTable);
- bool Commit(enum ipa_ip_type ip);
- bool Reset(enum ipa_ip_type ip);
- bool GetRoutingTable(struct ipa_ioc_get_rt_tbl *routingTable);
- bool PutRoutingTable(uint32_t routingTableHandle);
- };
- #endif
|