| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add a method for getting a list of files in a directory. | Peter Powell | 2019-06-10 | 1 | -17/+0 |
| * | win: change ssize_t typedef to SSIZE_T•••libmaxminddb redefines this when building under MSVC and breaks the
build otherwise due to the redefinition of ssize_t
| Adam | 2019-05-05 | 1 | -1/+1 |
| * | Fix building on Windows. | Peter Powell | 2018-07-24 | 1 | -0/+8 |
| * | Purge code for Windows XP and MSVC pre-2015. | Peter Powell | 2017-08-06 | 1 | -47/+0 |
| * | Merge insp20 | Attila Molnar | 2016-02-22 | 1 | -1/+6 |
| |\ |
|
| | * | Fix compilation with Microsoft Visual C++ 14. | Peter Powell | 2015-08-09 | 1 | -1/+6 |
| * | | Remove DISABLE_WRITEV and StreamSocket code for platforms lacking writev() su... | Attila Molnar | 2015-03-04 | 1 | -2/+0 |
| * | | Add SocketEngine::WriteV() | Attila Molnar | 2015-03-04 | 1 | -0/+7 |
| * | | Add writev() wrapper for Windows | Attila Molnar | 2015-03-04 | 1 | -0/+17 |
| * | | Merge insp20 | Attila Molnar | 2014-07-25 | 1 | -0/+2 |
| |\| |
|
| | * | Change Windows libraries to be dynamically linked | Adam | 2014-04-13 | 1 | -0/+2 |
| * | | Remove whitespace and minor style changes | Attila Molnar | 2014-01-23 | 1 | -2/+2 |
| * | | Globally #undef min and max on Windows | Attila Molnar | 2014-01-23 | 1 | -1/+3 |
| * | | Use exit code EXIT_STATUS_SERVICE on Windows when exiting because of a servic... | attilamolnar | 2013-06-18 | 1 | -0/+3 |
| * | | Fix Windows | attilamolnar | 2013-06-06 | 1 | -0/+6 |
| * | | Use iostream instead of C-style file operations. | Peter Powell | 2013-06-06 | 1 | -0/+3 |
| * | | Add a va_copy define for Windows | Adam | 2013-05-23 | 1 | -0/+4 |
| * | | Clean up cross-platform compatibility.•••- Move compatibility macros to a new header file.
- Sort system include files in alphabetical order.
- Clean up signal handling (thanks to Adam).
| Peter Powell | 2013-05-07 | 1 | -3/+3 |
| * | | Tidy up source files:•••- Use #pragma once instead of include guards.
- Move header files in src/modules to include/modules.
- Fixed various spacing issues.
| Peter Powell | 2013-04-12 | 1 | -7/+2 |
| |/ |
|
| * | Win32: Rewrite the service wrapper•••Edited original commit to pass MAX_PATH as nSize to GetModuleFileNameA() instead of 101 after approval from author @ChrisTX (Attila Molnar)
Fixes #404 reported by @crchauffe
| ChrisTX | 2013-03-25 | 1 | -0/+15 |
| * | Replace printf(_c) with iostream | ChrisTX | 2012-10-14 | 1 | -3/+0 |
| * | Windows: In-depth cleanup (see details)•••-Fix x64 builds for Windows. Now all configurations compile.
-Remove the non-working rebase stuff.
-Remove the Windows fork hack and instead use FreeConsole() to emulate the behavior. This directly allows us to compile with ASLR, which is turned on now.
-Remove the old IPC mechanism for the removed GUI. This is not needed anymore as the GUI wasn't ever supported on anything newer than 1.2
-Remove the WIN32/WINDOWS macros. _WIN32 is supported on all x86-based VC++ targets, so that's what we need.
-Enable optimizations for release builds.
-De-duplicate printf_c(), it was previously copy-pasted into colors.h for configure
-Add the VC++ specific bad files in .gitignore
-Disable PID writing on Windows. This is only making sense for *nix builds.
-Replace the CPU usage retrieval with an algorithm analogous to the *nix behavior. Also supports separated now/total values. (Tested with a dummy busy loop - seems working)
-Removed certain unused functions and variables
-Remove stdint defines from the windows wrapper
-Remove CRT debug alloc. This is a bad idea as it would define a macro to replace free which breaks builds.
-Re-evaluated the warnings list, commented it.
-Moved inspircd_config/_version to include/ to match *nix
-Removed the creation of inspircd_se_config, as it isn't used at all.
-Made non-git builds show as "r0" instead of "r" (thanks to @SaberUK for pointing this out)
-Fixed up m_spanningtree's project paths. Now all configurations (debug/release x86/x64) have been tested and build properly.
-Moved FindDNS out of the wrapper and matched its log behavior with *nix. (It's pointless having it in the wrapper after the recent slimming down)
-Replaced random/srandom wrappers with a mechanism that tries to use Windows' Random API first is no SSL module is loaded.
-Removed more old junk from support for compilers older than VC++ 2010 (we don't have project files for these, so compiling them would be hard anyways)
-Removed the unused ClearConsole()
-Removed unused includes from the wrapper. Also, do not include psapi.h here if we don't link psapi.lib. This should be done where appropriate.
-Made inet_aton an inline function for increased performance
-C4800, performance warning about bool forcing, resolved at all occurrences.
-C4701, uninitialized variable 'cached', resolved at all occurrences.
-dlerror() was migrated out of the wrapper for more thread safety (no global buffer being shared) and increased performance.
-Removed the wrong CRT debug flags. This drains a lot of performance.
-Removed the clock_gettime/gettimeofday wrappers
-Replaced all TCHAR/ANSI mix-ups of functions with the correct respective function.
-Added a block of C4355 for < VS2012
-Update project files for c870714
| ChrisTX | 2012-10-12 | 1 | -121/+48 |
| * | Windows: Use the WinAPI for DNS server retrieval | ChrisTX | 2012-10-04 | 1 | -3/+0 |
| * | Fixed Windows build, int32_t is already defined in stdint.h.•••Add GnuTLS support for Windows.
Made NSIS script include extra DLL files if supplied and
include the conf/aliases and conf/modules example configuration files.
Added make_gnutls_cert.bat to generate GnuTLS certificates on Windows.
Fixed typo in gnutlscert.pm.
| Adam | 2012-07-09 | 1 | -1/+0 |
| * | Replace copyright headers with headers granting specific authors copyright | Robby- | 2012-04-19 | 1 | -8/+16 |
| * | Fix extras compilation under Windows | Adam | 2011-06-18 | 1 | -1/+1 |
| * | Fixed Windows build on VS 2010 | Adam | 2011-04-10 | 1 | -1/+12 |
| * | Remove excessive gettimeofday system calls•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12293 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-01-18 | 1 | -1/+2 |
| * | Fix up finding dns server to use for windows to match latest configreader cha...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11892 e03df62e-2008-0410-955e-edbf42e46eb7
| peavey | 2009-10-17 | 1 | -1/+1 |
| * | Define DISABLE_WRITEV and use the IOHook single-copy method for Windows send()•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11848 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-10-12 | 1 | -8/+1 |
| * | Include psapi.h to fix stats.cpp compiling.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11840 e03df62e-2008-0410-955e-edbf42e46eb7
| peavey | 2009-10-11 | 1 | -0/+1 |
| * | 3rd time lucky? Fix again for setsockopt.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11825 e03df62e-2008-0410-955e-edbf42e46eb7
| peavey | 2009-10-10 | 1 | -3/+0 |
| * | Slight tweak to setsockopt fix.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11824 e03df62e-2008-0410-955e-edbf42e46eb7
| peavey | 2009-10-10 | 1 | -0/+3 |
| * | * Fix inspsocket to not include uio.h on windows.•••* Wrap writev and some structs to fix inspsocket compile on win.
* Fix a few compile errors due to latest trunk changes in win32wrapper code.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11822 e03df62e-2008-0410-955e-edbf42e46eb7
| peavey | 2009-10-10 | 1 | -0/+11 |
| * | Remove InspIRCd* parameters and fields•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11763 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-09-26 | 1 | -4/+3 |
| * | win: vs2010 requires this to link in process memory retrieval stuff•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11521 e03df62e-2008-0410-955e-edbf42e46eb7
| w00t | 2009-08-15 | 1 | -0/+9 |
| * | win: don't define error constants on VS2009, they're defined for us (finally)•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11520 e03df62e-2008-0410-955e-edbf42e46eb7
| w00t | 2009-08-15 | 1 | -6/+8 |
| * | Fix types on Windows. Hooray for not supporting stdint.h. Thanks to Special.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11471 e03df62e-2008-0410-955e-edbf42e46eb7
| w00t | 2009-08-03 | 1 | -2/+2 |
| * | Fix our getops implementation on windows. Have optind available, and make sur...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11466 e03df62e-2008-0410-955e-edbf42e46eb7
| peavey | 2009-08-02 | 1 | -0/+1 |
| * | No forget using windows' broken inet_pton and inet_ntop, they are not POSIX c...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11460 e03df62e-2008-0410-955e-edbf42e46eb7
| peavey | 2009-08-02 | 1 | -4/+6 |
| * | Since Windows SDK6.0a inet_pton and inet_ntop is defined if (NTDDI_VERSION >=...•••Fixes the breakage Brain mentions in r11407.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11459 e03df62e-2008-0410-955e-edbf42e46eb7
| peavey | 2009-08-02 | 1 | -0/+2 |
| * | more fixes. inet_pton is now in error, this is because the windows 6.0 sdk de...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11407 e03df62e-2008-0410-955e-edbf42e46eb7
| brain | 2009-06-12 | 1 | -2/+3 |
| * | usleep() is no longer needed, and should not be needed in the future•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11252 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-03-23 | 1 | -3/+0 |
| * | Update all wiki links to point to the new wiki. This was done automatically w...•••for file in $(find -type f -and -not -path '*/.svn/*' -and -not -name '*.so') ; do sed -e 's#http://www.inspircd.org/wiki#http://wiki.inspircd.org#' -e 's#http://wiki.inspircd.org/index.php/#http://wiki.inspircd.org/#' -i $file ; done
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11223 e03df62e-2008-0410-955e-edbf42e46eb7
| psychon | 2009-03-15 | 1 | -1/+1 |
| * | Fix win32 build issue.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11204 e03df62e-2008-0410-955e-edbf42e46eb7
| w00t | 2009-03-10 | 1 | -0/+1 |
| * | Update copyrights for 2009.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10932 e03df62e-2008-0410-955e-edbf42e46eb7
| w00t | 2009-01-02 | 1 | -1/+1 |
| * | Place CRT debug defines in win32wrapper.h, so they are defined everywhere. Th...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10917 e03df62e-2008-0410-955e-edbf42e46eb7
| w00t | 2008-12-27 | 1 | -0/+7 |
| * | Patch by dz to remove the one usage of strdup/strtok_r, which is very un-C++ ...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10543 e03df62e-2008-0410-955e-edbf42e46eb7
| special | 2008-09-14 | 1 | -3/+0 |
| * | sql api and m_mysql compile fixes for windows•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10393 e03df62e-2008-0410-955e-edbf42e46eb7
| brain | 2008-09-05 | 1 | -0/+2 |
| * | Properly give the service specific exit code on failure to start. Now we just...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10240 e03df62e-2008-0410-955e-edbf42e46eb7
| brain | 2008-08-24 | 1 | -0/+2 |