]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/socketengines/socketengine_select.h
First phase of conversion to dynamic limits on all the lengths, configured via the...
[user/henk/code/inspircd.git] / include / socketengines / socketengine_select.h
index 83d92d48f2c2921aeb0d4b4dac24ea0ec6e5f09e..cb4ed0ecf6f88f544856a743a8f396d7a0691c49 100644 (file)
@@ -37,10 +37,11 @@ private:
        std::map<int,int> fds;
        /** List of writeable ones (WantWrite())
         */
-       bool writeable[MAX_DESCRIPTORS];
+       bool* writeable;
        /** The read set and write set, populated before each call to select().
         */
        fd_set wfdset, rfdset, errfdset;
+
 public:
        /** Create a new SelectEngine
         * @param Instance The creator of this object