diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-12 00:44:14 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-12 00:44:14 -0500 |
commit | 1f0a1dec1af315e6465e1c1dd503aa942a85b1f4 (patch) | |
tree | e8464d9f1e12d3366fa181a2c1dc95a68e817b9c /hscript/network.hh | |
parent | 47558ea71d523fb71307d394be4bfad8da4664d8 (diff) | |
download | horizon-1f0a1dec1af315e6465e1c1dd503aa942a85b1f4.tar.gz horizon-1f0a1dec1af315e6465e1c1dd503aa942a85b1f4.tar.bz2 horizon-1f0a1dec1af315e6465e1c1dd503aa942a85b1f4.tar.xz horizon-1f0a1dec1af315e6465e1c1dd503aa942a85b1f4.zip |
hscript: Pass opts to all validate()s, implement 'mount' validation
Diffstat (limited to 'hscript/network.hh')
-rw-r--r-- | hscript/network.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hscript/network.hh b/hscript/network.hh index 52e41f9..f24dd0f 100644 --- a/hscript/network.hh +++ b/hscript/network.hh @@ -25,7 +25,7 @@ private: public: static Key *parseFromData(const std::string data, int lineno, int *errors, int *warnings); - bool execute() const override; + bool execute(ScriptOptions) const override; }; class NetAddress : public Key { |