copy wangle back into folly
authorJames Sedgwick <jsedgwick@fb.com>
Tue, 26 May 2015 22:14:41 +0000 (15:14 -0700)
committerPavlo Kushnir <pavlo@fb.com>
Thu, 28 May 2015 00:52:59 +0000 (17:52 -0700)
commit5575da1ffdf860588f8a1da9557f1fbc6d86b649
tree461086ddc3b0832130543a37377b2f90a551be73
parentef1c65adcbaf99ade4cfe548dabb2cfb7b4fa025
copy wangle back into folly

Summary: copy everything but example/

Test Plan: fbconfig -r folly/wangle && fbmake runtests

Reviewed By: hans@fb.com

Subscribers: fugalh, ps, bmatheny, folly-diffs@, jsedgwick, yfeldblum, markdrayton, chalfant

FB internal diff: D2100811

Tasks: 5802833

Signature: t1:2100811:1432678173:6c336fe53aa223993f6f82de4ac91b3c19beacf1
99 files changed:
folly/wangle/acceptor/Acceptor.cpp [new file with mode: 0644]
folly/wangle/acceptor/Acceptor.h [new file with mode: 0644]
folly/wangle/acceptor/ConnectionCounter.h [new file with mode: 0644]
folly/wangle/acceptor/ConnectionManager.cpp [new file with mode: 0644]
folly/wangle/acceptor/ConnectionManager.h [new file with mode: 0644]
folly/wangle/acceptor/DomainNameMisc.h [new file with mode: 0644]
folly/wangle/acceptor/LoadShedConfiguration.cpp [new file with mode: 0644]
folly/wangle/acceptor/LoadShedConfiguration.h [new file with mode: 0644]
folly/wangle/acceptor/ManagedConnection.cpp [new file with mode: 0644]
folly/wangle/acceptor/ManagedConnection.h [new file with mode: 0644]
folly/wangle/acceptor/NetworkAddress.h [new file with mode: 0644]
folly/wangle/acceptor/ServerSocketConfig.h [new file with mode: 0644]
folly/wangle/acceptor/SocketOptions.cpp [new file with mode: 0644]
folly/wangle/acceptor/SocketOptions.h [new file with mode: 0644]
folly/wangle/acceptor/TransportInfo.cpp [new file with mode: 0644]
folly/wangle/acceptor/TransportInfo.h [new file with mode: 0644]
folly/wangle/bootstrap/BootstrapTest.cpp [new file with mode: 0644]
folly/wangle/bootstrap/ClientBootstrap.h [new file with mode: 0644]
folly/wangle/bootstrap/ServerBootstrap-inl.h [new file with mode: 0644]
folly/wangle/bootstrap/ServerBootstrap.cpp [new file with mode: 0644]
folly/wangle/bootstrap/ServerBootstrap.h [new file with mode: 0644]
folly/wangle/bootstrap/ServerSocketFactory.h [new file with mode: 0644]
folly/wangle/channel/AsyncSocketHandler.h [new file with mode: 0644]
folly/wangle/channel/EventBaseHandler.h [new file with mode: 0644]
folly/wangle/channel/Handler.h [new file with mode: 0644]
folly/wangle/channel/HandlerContext-inl.h [new file with mode: 0644]
folly/wangle/channel/HandlerContext.h [new file with mode: 0644]
folly/wangle/channel/OutputBufferingHandler.h [new file with mode: 0644]
folly/wangle/channel/Pipeline-inl.h [new file with mode: 0644]
folly/wangle/channel/Pipeline.h [new file with mode: 0644]
folly/wangle/channel/StaticPipeline.h [new file with mode: 0644]
folly/wangle/channel/test/MockHandler.h [new file with mode: 0644]
folly/wangle/channel/test/OutputBufferingHandlerTest.cpp [new file with mode: 0644]
folly/wangle/channel/test/PipelineTest.cpp [new file with mode: 0644]
folly/wangle/codec/ByteToMessageCodec.cpp [new file with mode: 0644]
folly/wangle/codec/ByteToMessageCodec.h [new file with mode: 0644]
folly/wangle/codec/CodecTest.cpp [new file with mode: 0644]
folly/wangle/codec/FixedLengthFrameDecoder.h [new file with mode: 0644]
folly/wangle/codec/LengthFieldBasedFrameDecoder.cpp [new file with mode: 0644]
folly/wangle/codec/LengthFieldBasedFrameDecoder.h [new file with mode: 0644]
folly/wangle/codec/LengthFieldPrepender.cpp [new file with mode: 0644]
folly/wangle/codec/LengthFieldPrepender.h [new file with mode: 0644]
folly/wangle/codec/LineBasedFrameDecoder.cpp [new file with mode: 0644]
folly/wangle/codec/LineBasedFrameDecoder.h [new file with mode: 0644]
folly/wangle/codec/README.md [new file with mode: 0644]
folly/wangle/codec/StringCodec.h [new file with mode: 0644]
folly/wangle/concurrent/BlockingQueue.h [new file with mode: 0644]
folly/wangle/concurrent/CPUThreadPoolExecutor.cpp [new file with mode: 0644]
folly/wangle/concurrent/CPUThreadPoolExecutor.h [new file with mode: 0644]
folly/wangle/concurrent/Codel.cpp [new file with mode: 0644]
folly/wangle/concurrent/Codel.h [new file with mode: 0644]
folly/wangle/concurrent/FiberIOExecutor.h [new file with mode: 0644]
folly/wangle/concurrent/FutureExecutor.h [new file with mode: 0644]
folly/wangle/concurrent/GlobalExecutor.cpp [new file with mode: 0644]
folly/wangle/concurrent/GlobalExecutor.h [new file with mode: 0644]
folly/wangle/concurrent/IOExecutor.h [new file with mode: 0644]
folly/wangle/concurrent/IOThreadPoolExecutor.cpp [new file with mode: 0644]
folly/wangle/concurrent/IOThreadPoolExecutor.h [new file with mode: 0644]
folly/wangle/concurrent/LifoSemMPMCQueue.h [new file with mode: 0644]
folly/wangle/concurrent/NamedThreadFactory.h [new file with mode: 0644]
folly/wangle/concurrent/PriorityLifoSemMPMCQueue.h [new file with mode: 0644]
folly/wangle/concurrent/ThreadFactory.h [new file with mode: 0644]
folly/wangle/concurrent/ThreadPoolExecutor.cpp [new file with mode: 0644]
folly/wangle/concurrent/ThreadPoolExecutor.h [new file with mode: 0644]
folly/wangle/concurrent/test/CodelTest.cpp [new file with mode: 0644]
folly/wangle/concurrent/test/GlobalExecutorTest.cpp [new file with mode: 0644]
folly/wangle/concurrent/test/ThreadPoolExecutorTest.cpp [new file with mode: 0644]
folly/wangle/rx/Dummy.cpp [new file with mode: 0644]
folly/wangle/rx/Observable.h [new file with mode: 0644]
folly/wangle/rx/Observer.h [new file with mode: 0644]
folly/wangle/rx/README.md [new file with mode: 0644]
folly/wangle/rx/Subject.h [new file with mode: 0644]
folly/wangle/rx/Subscription.h [new file with mode: 0644]
folly/wangle/rx/test/RxBenchmark.cpp [new file with mode: 0644]
folly/wangle/rx/test/RxTest.cpp [new file with mode: 0644]
folly/wangle/rx/types.h [new file with mode: 0644]
folly/wangle/service/ClientDispatcher.h [new file with mode: 0644]
folly/wangle/service/ServerDispatcher.h [new file with mode: 0644]
folly/wangle/service/Service.h [new file with mode: 0644]
folly/wangle/service/ServiceTest.cpp [new file with mode: 0644]
folly/wangle/ssl/ClientHelloExtStats.h [new file with mode: 0644]
folly/wangle/ssl/DHParam.h [new file with mode: 0644]
folly/wangle/ssl/PasswordInFile.cpp [new file with mode: 0644]
folly/wangle/ssl/PasswordInFile.h [new file with mode: 0644]
folly/wangle/ssl/SSLCacheOptions.h [new file with mode: 0644]
folly/wangle/ssl/SSLCacheProvider.h [new file with mode: 0644]
folly/wangle/ssl/SSLContextConfig.h [new file with mode: 0644]
folly/wangle/ssl/SSLContextManager.cpp [new file with mode: 0644]
folly/wangle/ssl/SSLContextManager.h [new file with mode: 0644]
folly/wangle/ssl/SSLSessionCacheManager.cpp [new file with mode: 0644]
folly/wangle/ssl/SSLSessionCacheManager.h [new file with mode: 0644]
folly/wangle/ssl/SSLStats.h [new file with mode: 0644]
folly/wangle/ssl/SSLUtil.cpp [new file with mode: 0644]
folly/wangle/ssl/SSLUtil.h [new file with mode: 0644]
folly/wangle/ssl/TLSTicketKeyManager.cpp [new file with mode: 0644]
folly/wangle/ssl/TLSTicketKeyManager.h [new file with mode: 0644]
folly/wangle/ssl/TLSTicketKeySeeds.h [new file with mode: 0644]
folly/wangle/ssl/test/SSLCacheTest.cpp [new file with mode: 0644]
folly/wangle/ssl/test/SSLContextManagerTest.cpp [new file with mode: 0644]