summaryrefslogtreecommitdiffhomepage
path: root/NetEx
AgeCommit message (Collapse)Author
2024-04-02Fixed segv due to this captureAki
2024-03-26Misleasing implicit capture [=] probably inteded to get *thisAki
2024-03-26DWORD replaced with std::uint32_t in non-Win32-related partsAki
With the exception of some netcode. This brings some important questions and solidifies me in pursuing better abstract over definitions. It might also be a good idea to have distinct aliases or compound types for time and (net) identifiers.
2024-03-12Legal notices updatedAki
Rename contrib -> third-party intendes to express the origin and purpose of that part of the code better. I plan to readd contrib/ again but with more in-project things like bash-completions, dev workflow scripts etc.
2022-03-31Reformatted NetSock closer to the rest of NetExAki
2022-03-31Fixed left-overs that failed linux gcc compilationAki
2022-03-31Added naive support for posix platforms in NetSockAki
2022-03-31Removed method to check available waiting byts in NetSockAki
2022-03-31Removed windows.h include and types from NetSockAki
2022-03-31Brought NetPeer closer to standardAki
2022-03-30Brought NetMsg closer to standardAki
2022-03-30Brought NetLink closer to standardAki
2022-03-30Brought NetGram closer to standardAki
2022-03-30Brought NetLayer closer to standardAki
2022-03-30Removed windows header usage in NetClientAki
2022-03-30Cleaned up includes in NetClientAki
2022-03-30Changed to use posix alternative for _stricmpAki
2022-03-30Fixed changed that were missed in NetAddrAki
2022-03-30Brought NetHost closer to standardAki
2022-03-30Brought NetAddr closer to standardAki
2022-03-30Removed windows header uses in HttpServletExecAki
2022-03-29Fixed includes in HttpServletExecAki
2022-03-29Split Session from HttpServletAki
2022-03-29Fixed includes in HttpClientAki
2022-03-29Removed windows header usage in HttpServerAki
2022-03-29Split Param, Response and Request from HttpServer filesAki
2022-03-28Removed Description of NetLayerAki
2022-03-28Removed windows headers and moved NetServer a bit closer to standardAki
2022-03-27Replaced ThreadSync with stl's mutexAki
2022-03-27Replaced own ThreadSync with atomic variable in TextAki
2022-03-27Removed MemDebug from FoundationExAki
2022-02-13Added copyright NOTICE and project license, cleaned up notices in filesAki
I want the legal state of the project to be clear while avoiding unnecessary amount of boilerplate in source code (with duplicated content) which some open source projects tend to create. The notice in source is now way smaller while the notice in NOTICE gives much better overview of the entire project. I hope this is a solution that respects the project's history, original author, and all contributions made to it over the years.
2022-01-30Removed trailing whitespace all over the placeAki
2021-10-02Separated out msvc cmake configurationAki
2021-10-02Streamlined file and guard endings in Foundation and NetExAki
2021-10-02Increased control over win sdk pathsAki
2021-10-01Removed vs left-oversAki
2021-09-30Fixed NetEx includes against win sdkAki
2021-09-28Added missing FoundationEx dependenciesAki
2021-09-28Created best-guess cmake stubsAki
Structure of the project as whole is... questionable. It looks that the directories are intermingled even if they appear separated. This is a first guess to have at least something in place.
2019-09-12Fix ill-formed and warning-causing new overloaded and delete operatorsYasha Jannoo
From VS2015 onwards, overloaded new and delete operators were no longer allowed to be declared inline. See https://docs.microsoft.com/en-us/cpp/porting/visual-cpp-what-s-new-2003-through-2015?view=vs-2019. As a consequence of moving the definitions into source files, we cannot simply include the headers in the files they are required in without also either creating a static library or including the source files in the projects. Do the latter as the pattern fits other examples of dependencies across projects in the solution. The overloaded operator definitions could be made neater in a future change. For now they are written as their declarations appear in the header file, with the same ifdefs as in the header file.
2019-09-10Turn off edit and continue.Yasha Jannoo
Fixes incompatibility between /ZI and /Gy- by not allowing ZI at all for the time-being. We can turn it on again later.
2019-09-10Turn off Minimal Rebuild across the boardYasha Jannoo
This is the \Gm compiler flag. There are warnings that this is deprecated, and the general advice is that setting the multiprocessor build flag should be used instead.
2019-09-05Retarget for new MSBuild toolsetsYasha Jannoo
Retarget all projects in the Starshatter.sln from v110 (VS12) to v141 (VS17)
2013-07-10Updating the project files so that building works againfwoltermann@gmail.com
2013-07-07Updated open source license declaration and fixed some formatting issues.milo24x7@gmail.com
2012-07-16PVS Studio warning fix: Null pointer dereference when accessing msgFWoltermann@gmail.com
2012-06-13One of these days, I'ma be done with project file updatesFWoltermann@gmail.com
2012-06-05REdoing r71, without the mistakesFWoltermann@gmail.com
2012-06-05Add VS2012 configs to the project files.FWoltermann@gmail.com