We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a95cfe3 commit 0ec4b84Copy full SHA for 0ec4b84
network.cpp
@@ -22,6 +22,7 @@
22
#include <covscript/cni.hpp>
23
#include <covscript/extension.hpp>
24
#include <covscript/extensions/char.hpp>
25
+#include <covscript/extensions/array.hpp>
26
#include <covscript/extensions/string.hpp>
27
#include <covscript/extensions/exception.hpp>
28
#include <memory>
@@ -291,6 +292,7 @@ namespace network_cs_ext {
291
292
void init()
293
{
294
char_cs_ext::init();
295
+ array_cs_ext::init();
296
string_cs_ext::init();
297
except_cs_ext::init();
298
network_ext.add_var("tcp", var::make_protect<extension_t>(tcp::tcp_ext_shared));
0 commit comments