Author: gedmurphy Date: Tue Sep 16 11:41:18 2008 New Revision: 36269
URL: http://svn.reactos.org/svn/reactos?rev=36269&view=rev Log: - Starting from the top, add a brand new top level network library, written by Alex and taken from his original network rewrite branch. A _huge_ improvement on our existing library with proper provider and catalog support. - Make the lib both GCC and MSVC friendly. - It won't build yet as it will rely on a rewrite of the network headers
Added: branches/umode-network-branch/dll/win32/ws2_32/inc/ (with props) branches/umode-network-branch/dll/win32/ws2_32/inc/ws2_32.h (with props) branches/umode-network-branch/dll/win32/ws2_32/inc/ws2_32p.h (with props) branches/umode-network-branch/dll/win32/ws2_32/src/ (with props) branches/umode-network-branch/dll/win32/ws2_32/src/addrconv.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/addrinfo.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/async.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/bhook.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/dcatalog.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/dcatitem.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/dllmain.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/dprocess.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/dprovide.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/dsocket.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/dthread.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/dupsock.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/enumprot.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/event.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/getproto.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/getxbyxx.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/ioctl.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/nscatalo.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/nscatent.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/nspinstl.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/nsprovid.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/nsquery.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/qos.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/qshelpr.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/rasdial.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/recv.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/rnr.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/scihlpr.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/select.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/send.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/sockctrl.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/socklife.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/spinstal.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/sputil.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/startup.c (with props) branches/umode-network-branch/dll/win32/ws2_32/src/wsautil.c (with props) Removed: branches/umode-network-branch/dll/win32/ws2_32/include/ branches/umode-network-branch/dll/win32/ws2_32/misc/ branches/umode-network-branch/dll/win32/ws2_32/tests/ Modified: branches/umode-network-branch/dll/win32/ws2_32/ws2_32.rbuild branches/umode-network-branch/dll/win32/ws2_32/ws2_32.rc
[This mail would be too long, it was shortened to contain the URLs only.]
Added: branches/umode-network-branch/dll/win32/ws2_32/inc/ws2_32.h URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/inc/ws2_32p.h URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/addrconv.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/addrinfo.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/async.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/bhook.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/dcatalog.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/dcatitem.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/dllmain.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/dprocess.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/dprovide.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/dsocket.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/dthread.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/dupsock.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/enumprot.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/event.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/getproto.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/getxbyxx.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/ioctl.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/nscatalo.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/nscatent.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/nspinstl.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/nsprovid.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/nsquery.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/qos.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/qshelpr.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/rasdial.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/recv.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/rnr.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/scihlpr.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/select.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/send.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/sockctrl.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/socklife.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/spinstal.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/sputil.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/startup.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Added: branches/umode-network-branch/dll/win32/ws2_32/src/wsautil.c URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Modified: branches/umode-network-branch/dll/win32/ws2_32/ws2_32.rbuild URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...
Modified: branches/umode-network-branch/dll/win32/ws2_32/ws2_32.rc URL: http://svn.reactos.org/svn/reactos/branches/umode-network-branch/dll/win32/w...