File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 19
19
* Github: https://github.com/mikecovlee
20
20
*/
21
21
#include < network/network.hpp>
22
- #include < covscript/extension.hpp>
23
22
#include < covscript/cni.hpp>
23
+ #include < covscript/extension.hpp>
24
+ #include < covscript/extensions/char.hpp>
24
25
#include < covscript/extensions/string.hpp>
26
+ #include < covscript/extensions/exception.hpp>
25
27
#include < memory>
26
28
27
29
namespace network_cs_ext {
@@ -288,7 +290,9 @@ namespace network_cs_ext {
288
290
289
291
void init ()
290
292
{
293
+ char_cs_ext::init ();
291
294
string_cs_ext::init ();
295
+ except_cs_ext::init ();
292
296
network_ext.add_var (" tcp" , var::make_protect<extension_t >(tcp::tcp_ext_shared));
293
297
network_ext.add_var (" udp" , var::make_protect<extension_t >(udp::udp_ext_shared));
294
298
network_ext.add_var (" host_name" , var::make_protect<callable>(cni (host_name), true ));
You can’t perform that action at this time.
0 commit comments