Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria (garetxe@gmail.com) |
Safe Haskell | None |
Language | Haskell2010 |
TlsServerConnection
is the server-side subclass of TlsConnection
,
representing a server-side TLS connection.
Since: 2.28
Synopsis
- newtype TlsServerConnection = TlsServerConnection (ManagedPtr TlsServerConnection)
- noTlsServerConnection :: Maybe TlsServerConnection
- class GObject o => IsTlsServerConnection o
- toTlsServerConnection :: (MonadIO m, IsTlsServerConnection o) => o -> m TlsServerConnection
- tlsServerConnectionNew :: (HasCallStack, MonadIO m, IsIOStream a, IsTlsCertificate b) => a -> Maybe b -> m TlsServerConnection
- constructTlsServerConnectionAuthenticationMode :: IsTlsServerConnection o => TlsAuthenticationMode -> IO (GValueConstruct o)
- getTlsServerConnectionAuthenticationMode :: (MonadIO m, IsTlsServerConnection o) => o -> m TlsAuthenticationMode
- setTlsServerConnectionAuthenticationMode :: (MonadIO m, IsTlsServerConnection o) => o -> TlsAuthenticationMode -> m ()
Exported types
newtype TlsServerConnection Source #
Memory-managed wrapper type.
Instances
noTlsServerConnection :: Maybe TlsServerConnection Source #
A convenience alias for Nothing
:: Maybe
TlsServerConnection
.
class GObject o => IsTlsServerConnection o Source #
Type class for types which can be safely cast to TlsServerConnection
, for instance with toTlsServerConnection
.
Instances
toTlsServerConnection :: (MonadIO m, IsTlsServerConnection o) => o -> m TlsServerConnection Source #
Cast to TlsServerConnection
, for types for which this is known to be safe. For general casts, use castTo
.
Methods
new
tlsServerConnectionNew Source #
:: (HasCallStack, MonadIO m, IsIOStream a, IsTlsCertificate b) | |
=> a |
|
-> Maybe b |
|
-> m TlsServerConnection | Returns: the new
|
Creates a new TlsServerConnection
wrapping baseIoStream
(which
must have pollable input and output streams).
See the documentation for TlsConnection
:base-io-stream
for restrictions
on when application code can run operations on the baseIoStream
after
this function has returned.
Since: 2.28
Properties
authenticationMode
The TlsAuthenticationMode
for the server. This can be changed
before calling tlsConnectionHandshake
if you want to
rehandshake with a different mode from the initial handshake.
Since: 2.28
constructTlsServerConnectionAuthenticationMode :: IsTlsServerConnection o => TlsAuthenticationMode -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “authentication-mode
” property. This is rarely needed directly, but it is used by new
.
getTlsServerConnectionAuthenticationMode :: (MonadIO m, IsTlsServerConnection o) => o -> m TlsAuthenticationMode Source #
Get the value of the “authentication-mode
” property.
When overloading is enabled, this is equivalent to
get
tlsServerConnection #authenticationMode
setTlsServerConnectionAuthenticationMode :: (MonadIO m, IsTlsServerConnection o) => o -> TlsAuthenticationMode -> m () Source #
Set the value of the “authentication-mode
” property.
When overloading is enabled, this is equivalent to
set
tlsServerConnection [ #authenticationMode:=
value ]