summaryrefslogtreecommitdiff
path: root/src/mongo/platform/windows_basic.h
AgeCommit message (Collapse)Author
2020-02-14SERVER-45592 Raise Windows runtime minimum to Windows 10/Windows 2016 for ↵Mark Benvenuto
MongoDB 4.4
2019-02-13SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue
Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
2018-10-22SERVER-37651 Update header files with new licenseRamon Fernandez
2018-03-22SERVER-22411 SChannel Certificate Validation and FixesMark Benvenuto
2018-02-15SERVER-22411 Add stub implementation of ASIO SChannel integrationMark Benvenuto
2018-02-07Revert "SERVER-22411 Add stub implementation of ASIO SChannel integration"Mark Benvenuto
This reverts commit ad223ea38846ceac92d7b5356add62e23e985537.
2018-02-07SERVER-22411 Add stub implementation of ASIO SChannel integrationMark Benvenuto
2018-01-30SERVER-32749 move sspi.h to windows_basic.hMark Benvenuto
2018-01-29Revert "SERVER-32749 move sspi.h to windows_basic.h"Tess Avitabile
This reverts commit 2487ab101a42434e1f61e68ee7c2383432861f8b.
2018-01-29SERVER-32749 move sspi.h to windows_basic.hMark Benvenuto
2017-03-29SERVER-27458 SERVER-28322 Remove outdated buildersAndrew Morrow
2016-05-28SERVER-23971 Clang-Format codeMark Benvenuto
2015-09-15SERVER-17422 Use BCrypt API for secure random number generation on WindowsAndrew Morrow
2015-06-25SERVER-19117 Implement asynchronous replication NetworkInterfacesamantharitter
2015-06-20SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto
2015-04-14SERVER-17866: Make minimum Windows build version Vista/2008Mark Benvenuto
2014-05-19SERVER-13978 Error out if NTDDI_VERSION is set but _WIN32_WINNT is notAndrew Morrow
2014-05-16SERVER-13264 Move Apache-licensed files to AGPLIan Whalen
Also update generators.
2013-07-09SERVER-10074 Fix compiler warning in rotatable_file_writer_test for win32.Andy Schwerin
2013-06-04SERVER-9410 Establish minimum as default for NTDDI_VERSION, not just ↵Andrew Morrow
_WIN32_WINNT
2013-06-04SERVER-9410 Permit use of Interlocked operations on Windows Server 2003Andrew Morrow
2013-04-08SERVER-8969 Support specifying minimum windows version to buildAndrew Morrow
2013-02-15SERVER-8612 alternative select() implementation for WindowsEric Milkie
On Windows, socket() can return any SOCKET value, not just a small, incrementing number. This makes it very hard to use select() since you need to allocate an enormous fd_set to cover all the possible SOCKET values. Instead, I've rewritten the listen/accept logic on Windows to avoid calling select(); instead, we make use of Winsock2 native API calls.
2013-02-13SERVER-8515 ensure Windows can run with > 63 open fd'sEric Milkie
2012-10-15fix a lot of copyright noticesEliot Horowitz
2012-05-20Some cleanup of headers and whitespaceTad Marshall
Try to impose current kernel style guide rules for include files on a subset of files: include what you use, start include paths from "mongo/", group and sort includes alphabetically. Changed tabs to spaces in a few places, fixed alignment where tabs had throw it off.
2012-05-04Compile WindowsTad Marshall
2012-05-04SERVER-4632 Welcome message displayed on first run of mongoLogan Capaldo
Display a welcome message if .mongorc.js is not present. Direct users to help, the doc website, and the google group. Write an empty .mongorc.js so that the message isn't displayed again. Signed-off-by: Eric Milkie <milkie@10gen.com>
2012-04-19fixing windows compile, trying to make it easierEliot Horowitz