Home
last modified time | relevance | path

Searched refs:AuthenticatedStream (Results 1 – 25 of 56) sorted by relevance

123

/dports/devel/capnproto/capnproto-0.9.0/c++/src/kj/compat/
H A Dtls.h122 kj::Promise<kj::AuthenticatedStream> wrapServer(kj::AuthenticatedStream stream);
123 kj::Promise<kj::AuthenticatedStream> wrapClient(
124 kj::AuthenticatedStream stream, kj::StringPtr expectedServerHostname);
H A Dtls.c++439 return acceptAuthenticated().then([](AuthenticatedStream&& stream) { in accept()
444 Promise<AuthenticatedStream> acceptAuthenticated() override { in acceptAuthenticated()
466 void onAcceptSuccess(AuthenticatedStream&& stream) { in onAcceptSuccess()
494 [this](AuthenticatedStream&& stream) { in acceptLoop()
506 ProducerConsumerQueue<AuthenticatedStream> queue;
529 Promise<kj::AuthenticatedStream> connectAuthenticated() override { in connectAuthenticated()
787 kj::Promise<kj::AuthenticatedStream> TlsContext::wrapClient( in wrapClient()
788 kj::AuthenticatedStream stream, kj::StringPtr expectedServerHostname) { in wrapClient()
793 return kj::AuthenticatedStream { kj::mv(conn), kj::mv(id) }; in wrapClient()
797 kj::Promise<kj::AuthenticatedStream> TlsContext::wrapServer(kj::AuthenticatedStream stream) { in wrapServer()
[all …]
H A Dtls-test.c++481 kj::AuthenticatedStream { kj::mv(pipe.ends[0]), kj::mv(innerClientId) },
487 kj::AuthenticatedStream { kj::mv(pipe.ends[1]), kj::mv(innerServerId) }));
778 kj::AuthenticatedStream { kj::mv(pipe.ends[1]), kj::UnknownPeerIdentity::newInstance() }));
800 kj::AuthenticatedStream { kj::mv(pipe.ends[1]), kj::UnknownPeerIdentity::newInstance() }));
819 kj::AuthenticatedStream { kj::mv(pipe.ends[1]), kj::UnknownPeerIdentity::newInstance() }));
844 Promise<AuthenticatedStream> acceptAuthenticated() override { in acceptAuthenticated()
845 return acceptImpl().then([](auto stream) -> AuthenticatedStream { in acceptAuthenticated()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/tests/UnitTests/Fakes/
H A DFakeAuthenticatedStream.cs12 public abstract class AuthenticatedStream : Stream class
14 protected AuthenticatedStream(Stream innerStream, bool leaveInnerStreamOpen) in AuthenticatedStream() method in System.Net.Security.AuthenticatedStream
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/src/System/Net/Security/
H A DAuthenticatedStream.cs10 public abstract class AuthenticatedStream : Stream class
15 protected AuthenticatedStream(Stream innerStream, bool leaveInnerStreamOpen) in AuthenticatedStream() method in System.Net.Security.AuthenticatedStream
H A DInternalNegotiateStream.cs16 public partial class NegotiateStream : AuthenticatedStream
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/SecureProtocols/
H A DAuthenticatedStream.cs25 public abstract class AuthenticatedStream: Stream class
30 protected AuthenticatedStream(Stream innerStream, bool leaveInnerStreamOpen) in AuthenticatedStream() method in System.Net.Security.AuthenticatedStream
H A D_NegoStream.cs32 public partial class NegotiateStream: AuthenticatedStream
H A DSslStream.cs65 public partial class SslStream: AuthenticatedStream
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.Security/Mono.Security.Interface/
H A DIMonoSslStream.cs162 AuthenticatedStream AuthenticatedStream { property
/dports/devel/capnproto/capnproto-0.9.0/c++/src/kj/
H A Dasync-io.h326 struct AuthenticatedStream { struct
415 virtual Promise<AuthenticatedStream> acceptAuthenticated();
548 virtual Promise<AuthenticatedStream> connectAuthenticated();
932 Promise<AuthenticatedStream> acceptAuthenticated() override;
965 Promise<AuthenticatedStream> connectAuthenticated() override;
H A Dasync-io-unix.c++1107 return acceptImpl(false).then([](AuthenticatedStream&& a) { return kj::mv(a.stream); }); in accept()
1110 Promise<AuthenticatedStream> acceptAuthenticated() override { in acceptAuthenticated()
1114 Promise<AuthenticatedStream> acceptImpl(bool authenticated) { in acceptImpl()
1149 AuthenticatedStream result; in acceptImpl()
1341 .then([](AuthenticatedStream&& a) { return kj::mv(a.stream); }); in connect()
1344 Promise<AuthenticatedStream> connectAuthenticated() override { in connectAuthenticated()
1418 static Promise<AuthenticatedStream> connectImpl( in connectImpl()
1434 -> Promise<AuthenticatedStream> { in connectImpl()
1436 AuthenticatedStream result; in connectImpl()
1443 -> Promise<AuthenticatedStream> { in connectImpl()
H A Dasync-io-test.c++109 return promise.then([&,addr=kj::mv(addr)](AuthenticatedStream result) mutable { in TEST()
141 }).then([&](AuthenticatedStream result) { in TEST()
193 return promise.then([&,addr=kj::mv(addr)](AuthenticatedStream result) mutable { in TEST()
221 }).then([&](AuthenticatedStream result) { in TEST()
274 return promise.then([&,addr=kj::mv(addr)](AuthenticatedStream result) mutable { in TEST()
287 }).then([&](AuthenticatedStream result) { in TEST()
337 return promise.then([&,addr=kj::mv(addr)](AuthenticatedStream result) mutable { in TEST()
353 }).then([&](AuthenticatedStream result) { in TEST()
H A Dasync-io.c++2708 Promise<AuthenticatedStream> CapabilityStreamConnectionReceiver::acceptAuthenticated() { in acceptAuthenticated()
2710 return AuthenticatedStream { kj::mv(stream), UnknownPeerIdentity::newInstance() }; in acceptAuthenticated()
2731 Promise<AuthenticatedStream> CapabilityStreamNetworkAddress::connectAuthenticated() { in connectAuthenticated()
2733 return AuthenticatedStream { kj::mv(stream), UnknownPeerIdentity::newInstance() }; in connectAuthenticated()
3154 Promise<AuthenticatedStream> ConnectionReceiver::acceptAuthenticated() { in acceptAuthenticated()
3156 return AuthenticatedStream { kj::mv(stream), UnknownPeerIdentity::newInstance() }; in acceptAuthenticated()
3160 Promise<AuthenticatedStream> NetworkAddress::connectAuthenticated() { in connectAuthenticated()
3162 return AuthenticatedStream { kj::mv(stream), UnknownPeerIdentity::newInstance() }; in connectAuthenticated()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Mono.Net.Security/
H A DLegacySslStream.cs78 internal class LegacySslStream : AuthenticatedStream, IMonoSslStream
583 AuthenticatedStream IMonoSslStream.AuthenticatedStream {
H A DMonoTlsStream.cs145 return sslStream.AuthenticatedStream; in CreateStream()
H A DMobileAuthenticatedStream.cs38 abstract class MobileAuthenticatedStream : AuthenticatedStream, MSI.IMonoSslStream
218 public AuthenticatedStream AuthenticatedStream { property in Mono.Net.Security.MobileAuthenticatedStream
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/ref/
H A DSystem.Net.Security.cs16 public abstract class AuthenticatedStream : System.IO.Stream class
18 protected AuthenticatedStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen) { } in AuthenticatedStream() method in System.Net.Security.AuthenticatedStream
35 public partial class NegotiateStream : AuthenticatedStream
144 public partial class SslStream : AuthenticatedStream
/dports/lang/mono/mono-5.10.1.57/mcs/class/Facades/System.Net.Security/
H A DTypeForwarders.cs23 …Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Security.AuthenticatedStream))]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7.1/Facades/
H A DSystem.Net.Security.cs16 …Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Security.AuthenticatedStream))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/Facades/
H A DSystem.Net.Security.cs17 …Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Security.AuthenticatedStream))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/Facades/
H A DSystem.Net.Security.cs17 …Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Security.AuthenticatedStream))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/Facades/
H A DSystem.Net.Security.cs17 …Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Security.AuthenticatedStream))]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net.Security/
H A DSslStream.platformnotsupported.cs51 public class SslStream : AuthenticatedStream
H A DNegotiateStream.cs43 public class NegotiateStream : AuthenticatedStream

123