Skip to content

Commit

Permalink
update libcommon
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKellermann committed Nov 11, 2024
1 parent ba55eec commit 39bc047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcommon
Submodule libcommon updated 97 files
+1 −0 demo/meson.build
+76 −0 demo/net/RunPing.cxx
+10 −0 demo/net/meson.build
+4 −0 demo/was/BadRequest.cxx
+4 −0 demo/was/CoMirror.cxx
+4 −0 demo/was/CoSleepMirror.cxx
+4 −0 demo/was/Json.cxx
+4 −0 demo/was/Mirror.cxx
+1 −13 src/event/Loop.cxx
+30 −32 src/event/net/BufferedSocket.cxx
+6 −1 src/event/net/BufferedSocket.hxx
+175 −0 src/event/net/PingClient.cxx
+66 −0 src/event/net/PingClient.hxx
+56 −6 src/event/net/PrometheusExporterListener.cxx
+5 −0 src/event/net/PrometheusExporterListener.hxx
+1 −1 src/event/net/ServerSocket.cxx
+2 −5 src/event/net/SocketWrapper.cxx
+2 −3 src/event/net/djb/NetstringClient.cxx
+1 −0 src/event/net/meson.build
+2 −1 src/io/CopyRegularFile.cxx
+1 −0 src/io/DirectoryReader.hxx
+15 −0 src/io/FileDescriptor.cxx
+18 −3 src/io/FileDescriptor.hxx
+1 −1 src/io/Logger.cxx
+1 −1 src/io/MakeDirectory.cxx
+1 −1 src/io/SmallTextFile.hxx
+10 −13 src/lib/cap/State.hxx
+2 −6 src/lib/curl/Multi.hxx
+1 −1 src/lib/fmt/ExceptionFormatter.cxx
+8 −0 src/lib/fmt/meson.build
+1 −1 src/lua/Error.cxx
+5 −3 src/lua/pg/Connection.cxx
+1 −1 src/memory/SliceFifoBuffer.cxx
+2 −1 src/memory/SlicePool.cxx
+7 −0 src/net/AddressInfo.hxx
+1 −1 src/net/EasyMessage.cxx
+11 −1 src/net/IPv6Address.hxx
+57 −0 src/net/InetChecksum.hxx
+2 −3 src/net/Resolver.cxx
+7 −0 src/net/SocketError.hxx
+5 −2 src/net/SocketProtocolError.hxx
+1 −2 src/net/control/Client.cxx
+11 −1 src/pluggable/DefaultFifoBuffer.hxx
+21 −0 src/spawn/ChildOptions.cxx
+36 −0 src/spawn/ChildOptions.hxx
+5 −0 src/spawn/Client.cxx
+66 −23 src/spawn/Direct.cxx
+3 −0 src/spawn/IProtocol.hxx
+3 −3 src/spawn/NamespaceOptions.cxx
+4 −8 src/spawn/NamespaceOptions.hxx
+5 −1 src/spawn/PidfdEvent.cxx
+26 −0 src/spawn/Prepared.cxx
+29 −3 src/spawn/Prepared.hxx
+15 −5 src/spawn/ScopeProcess.cxx
+6 −0 src/spawn/Server.cxx
+2 −2 src/stock/BasicStock.cxx
+5 −11 src/stock/BasicStock.hxx
+1 −1 src/stock/MapStock.cxx
+1 −1 src/stock/MapStock.hxx
+32 −10 src/stock/MultiStock.cxx
+12 −2 src/stock/MultiStock.hxx
+31 −3 src/translation/Parser.cxx
+11 −0 src/translation/Protocol.hxx
+1 −3 src/translation/server/Connection.cxx
+12 −0 src/translation/server/Response.hxx
+1 −1 src/util/DeleteDisposer.hxx
+13 −0 src/util/DisposablePointer.hxx
+2 −2 src/util/DynamicFifoBuffer.hxx
+37 −41 src/util/ForeignFifoBuffer.hxx
+278 −0 src/util/IntrusiveCache.hxx
+17 −2 src/util/IntrusiveHashArrayTrie.hxx
+16 −1 src/util/IntrusiveHashSet.hxx
+4 −5 src/util/StringCompare.hxx
+21 −6 src/was/async/Control.cxx
+7 −1 src/was/async/Control.hxx
+0 −19 src/was/async/Error.hxx
+1 −1 src/was/async/MultiClient.cxx
+8 −0 src/was/async/MultiClient.hxx
+325 −0 src/was/async/SimpleClient.cxx
+110 −0 src/was/async/SimpleClient.hxx
+11 −5 src/was/async/SimpleInput.cxx
+6 −0 src/was/async/SimpleInput.hxx
+3 −3 src/was/async/SimpleMultiServer.cxx
+5 −0 src/was/async/SimpleOutput.hxx
+1 −0 src/was/async/SimpleRun.cxx
+21 −4 src/was/async/SimpleServer.cxx
+10 −2 src/was/async/SimpleServer.hxx
+2 −2 src/was/async/Socket.cxx
+2 −0 src/was/async/meson.build
+9 −9 subprojects/fmt.wrap
+6 −5 subprojects/nlohmann_json.wrap
+1 −0 test/meson.build
+147 −5 test/stock/TestMultiStock.cxx
+254 −0 test/util/TestIntrusiveCache.cxx
+1 −0 test/util/meson.build
+313 −0 test/was/TestSimpleServer.cxx
+16 −0 test/was/meson.build

0 comments on commit 39bc047

Please sign in to comment.