Reece Wilson
f43251c8fc
[+] AuFS::UpdateTimes [+] AuFS::UpdateFileTimes [+] AuFS::CompressEx [*] AuFS::Compress now rejects files that look to be already compressed [+] AuFS::DecompressEx [+] AuFS::Create [+] AuFS::WriteNewFile [+] AuFS::WriteNewString [+] AuFs::FileAttrsList [+] AuFs::FileAttrsGet [+] AuFs::FileAttrsSet [+] DirectoryLogger::uMaxLogsOrZeroBeforeCompress [+] ISocketChannel.AddEventListener [+] ISocketChannel.AddEventListener [+] DirectoryLogger.uMaxLogsOrZeroBeforeCompress [*] Fix UNIX regression [*] Fix up stream socket channel realloc IPC [*] Fix shutdown regression in pretty much everything thanks to 8ff81df1's dumbass fix (fixes fence regression on shutdown) [*] Fix DirDeleterEx formatting of reported failed paths [*] Fix up file not truncated if already exists bugs. Extended and alternative apis added. [*] Fix ICompressionStream::ReadEx returning the wrong read value [+] Legacy compression API can now self-correct once newer stream processor objects are added
47 lines
1.0 KiB
C++
47 lines
1.0 KiB
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: NetExperimental.hpp
|
|
Date: 2022-8-15
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#include "../Protocol/Protocol.hpp"
|
|
|
|
#include "EHostnameType.hpp"
|
|
#include "EIPProtocol.hpp"
|
|
#include "ENetworkError.hpp"
|
|
#include "ETransportProtocol.hpp"
|
|
|
|
#include "IPAddress.hpp"
|
|
#include "NetEndpoint.hpp"
|
|
#include "NetHostname.hpp"
|
|
#include "NetError.hpp"
|
|
|
|
#include "ISocketChannelEventListener.hpp"
|
|
|
|
#include "ISocketBase.hpp"
|
|
#include "ISocket.hpp"
|
|
#include "ISocketStats.hpp"
|
|
#include "ISocketDriver.hpp"
|
|
#include "ISocketChannel.hpp"
|
|
#include "ISocketDriverFactory.hpp"
|
|
#include "ISocketServerDriver.hpp"
|
|
#include "ISocketServer.hpp"
|
|
|
|
#include "IDatagramDriver.hpp"
|
|
#include "IDatagramServer.hpp"
|
|
|
|
#include "INetWorker.hpp"
|
|
|
|
#include "IResolver.hpp"
|
|
|
|
#include "INetAdapter.hpp"
|
|
|
|
#include "INetSrvInterfaces.hpp"
|
|
#include "INetSrvDatagram.hpp"
|
|
#include "INetSrvResolve.hpp"
|
|
#include "INetSrvSockets.hpp"
|
|
#include "INetSrvWorkers.hpp"
|
|
#include "INetInterface.hpp" |