<feed xmlns='http://www.w3.org/2005/Atom'>
<title>~steering/inspircd++.git/include/socketengine.h, branch v1.2.0a1</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>https://www.cgit.space/~steering/inspircd++.git/atom/include/socketengine.h?h=v1.2.0a1</id>
<link rel='self' href='https://www.cgit.space/~steering/inspircd++.git/atom/include/socketengine.h?h=v1.2.0a1'/>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/'/>
<updated>2008-04-02T17:08:09Z</updated>
<entry>
<title>Automatic detection and allocation of max fds. No longer needs recompile to change, just adjust it in your kernel or whatever and restart insp.</title>
<updated>2008-04-02T17:08:09Z</updated>
<author>
<name>brain</name>
</author>
<published>2008-04-02T17:08:09Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=2db77cda56947d4ee0f913c8082f6607855ca713'/>
<id>urn:sha1:2db77cda56947d4ee0f913c8082f6607855ca713</id>
<content type='text'>
Please note that select and iocp socket engines do not support detection and are always set to FD_SETSIZE and 10240 descriptors respectively.


git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9263 e03df62e-2008-0410-955e-edbf42e46eb7
</content>
</entry>
<entry>
<title>Keep count of the number of events in total, and seperate read, write and error event counters. We can use this for monitoring of heavy socket engine activity, e.g. a 'stuck' eventhandler</title>
<updated>2008-02-14T16:49:22Z</updated>
<author>
<name>brain</name>
</author>
<published>2008-02-14T16:49:22Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=ab4dee91de96555db158db91240ff91520318068'/>
<id>urn:sha1:ab4dee91de96555db158db91240ff91520318068</id>
<content type='text'>
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8933 e03df62e-2008-0410-955e-edbf42e46eb7
</content>
</entry>
<entry>
<title>Header update: 2007 -&gt; 2008</title>
<updated>2008-01-10T13:27:07Z</updated>
<author>
<name>w00t</name>
</author>
<published>2008-01-10T13:27:07Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=e4acbc95b8b6cd5b28d38a2242c02e8ff4991e4a'/>
<id>urn:sha1:e4acbc95b8b6cd5b28d38a2242c02e8ff4991e4a</id>
<content type='text'>
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8694 e03df62e-2008-0410-955e-edbf42e46eb7
</content>
</entry>
<entry>
<title>* Fixed some incorrect declarations in IOCPEngine</title>
<updated>2007-09-04T12:36:05Z</updated>
<author>
<name>burlex</name>
</author>
<published>2007-09-04T12:36:05Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=e51c8a5cf66d1d3eb475b967f99587b5a59ca442'/>
<id>urn:sha1:e51c8a5cf66d1d3eb475b967f99587b5a59ca442</id>
<content type='text'>
* Fixed the virtual socket wrapper functions in IOCPEngine {these should really be inlined on unix}
* Fixed several compilation issues under Win32
* Fixed calls to close() which should've been changed to SE-&gt;Close()
+ Added a crashdump saving system to Win32 builds. Dumps are saved in the format of dump-&lt;exename&gt;-&lt;year&gt;-&lt;month&gt;-&lt;day&gt;-&lt;hour&gt;-&lt;minute&gt;-&lt;second&gt;.dmp in the working directory. Enabled by default, undefine ENABLE_CRASHDUMPS to disable.
+ Added m_operflood, this is a module I've had lying around for some time but some users may like it as it allows unreal-like behaviour without increasing flood limits for non-opers.

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8015 e03df62e-2008-0410-955e-edbf42e46eb7
</content>
</entry>
<entry>
<title>Document all this shit!</title>
<updated>2007-08-23T22:17:20Z</updated>
<author>
<name>brain</name>
</author>
<published>2007-08-23T22:17:20Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=297f19c005bc386a689dcd33b95e8b249920705b'/>
<id>urn:sha1:297f19c005bc386a689dcd33b95e8b249920705b</id>
<content type='text'>
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7811 e03df62e-2008-0410-955e-edbf42e46eb7
</content>
</entry>
<entry>
<title>Craquity craq De-craq!</title>
<updated>2007-08-23T22:06:04Z</updated>
<author>
<name>brain</name>
</author>
<published>2007-08-23T22:06:04Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=d0d36795e807cf72295c6e73813e0c2daa0a71e7'/>
<id>urn:sha1:d0d36795e807cf72295c6e73813e0c2daa0a71e7</id>
<content type='text'>
This is probably broken on windows, do not attempt to use there yet unless you like broken stuff. Cant say for sure as i havent even tried to build yet and most likely wont tonight.
--- Abstract most of the berkely socket API out into SocketEngine derived classes. SocketEngine base class implements standard berkely sockets that 'real mens systems' like linux
and freebsd have. For socketengine_iocp we implement the windows specific nonesense like the special things needed for udp and accept (ick).
All this to eliminate a bunch of ifdefs.


git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7810 e03df62e-2008-0410-955e-edbf42e46eb7
</content>
</entry>
<entry>
<title>Fixed, i forgot the virtual when implementing this</title>
<updated>2007-08-15T21:26:36Z</updated>
<author>
<name>brain</name>
</author>
<published>2007-08-15T21:26:36Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=dab5de9885a6ccf5c33ed663054523f64a9aeb41'/>
<id>urn:sha1:dab5de9885a6ccf5c33ed663054523f64a9aeb41</id>
<content type='text'>
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7725 e03df62e-2008-0410-955e-edbf42e46eb7
</content>
</entry>
<entry>
<title>Windows specific data types in EventHandler are now Extensible items</title>
<updated>2007-07-27T19:26:27Z</updated>
<author>
<name>brain</name>
</author>
<published>2007-07-27T19:26:27Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=5adcfa35c2c6df8c356841c11835f25e3422364c'/>
<id>urn:sha1:5adcfa35c2c6df8c356841c11835f25e3422364c</id>
<content type='text'>
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7599 e03df62e-2008-0410-955e-edbf42e46eb7
</content>
</entry>
<entry>
<title>Removal of some ifdefs</title>
<updated>2007-07-27T18:16:09Z</updated>
<author>
<name>brain</name>
</author>
<published>2007-07-27T18:16:09Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=17d318c9decb96cc079e6b2e9707edc48322100e'/>
<id>urn:sha1:17d318c9decb96cc079e6b2e9707edc48322100e</id>
<content type='text'>
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7598 e03df62e-2008-0410-955e-edbf42e46eb7
</content>
</entry>
<entry>
<title>Some smart tricks to eliminate win32 ifdefs that are creeping into portable files</title>
<updated>2007-07-27T16:50:53Z</updated>
<author>
<name>brain</name>
</author>
<published>2007-07-27T16:50:53Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=ac3af8b61e9601d9585510d99891e993eb3a2722'/>
<id>urn:sha1:ac3af8b61e9601d9585510d99891e993eb3a2722</id>
<content type='text'>
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7589 e03df62e-2008-0410-955e-edbf42e46eb7
</content>
</entry>
</feed>
