LinuxEthernetTap addIps virtual function fix for SYNOLOGY builds

This commit is contained in:
Joseph Henry 2019-08-27 14:43:30 -07:00
commit d8de837c60
4 changed files with 9 additions and 9 deletions

View file

@ -45,6 +45,7 @@ public:
virtual void setEnabled(bool en) = 0;
virtual bool enabled() const = 0;
virtual bool addIp(const InetAddress &ip) = 0;
virtual bool addIps(std::vector<InetAddress> ips) = 0;
virtual bool removeIp(const InetAddress &ip) = 0;
virtual std::vector<InetAddress> ips() const = 0;
virtual void put(const MAC &from,const MAC &to,unsigned int etherType,const void *data,unsigned int len) = 0;