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 |
A SocketControlMessage
is a special-purpose utility message that
can be sent to or received from a Socket
. These types of
messages are often called "ancillary data".
The message can represent some sort of special instruction to or information from the socket or can represent a special kind of transfer to the peer (for example, sending a file descriptor over a UNIX socket).
These messages are sent with socketSendMessage
and received
with socketReceiveMessage
.
To extend the set of control message that can be sent, subclass this class and override the get_size, get_level, get_type and serialize methods.
To extend the set of control messages that can be received, subclass
this class and implement the deserialize method. Also, make sure your
class is registered with the GType typesystem before calling
socketReceiveMessage
to read such a message.
Synopsis
- newtype SocketControlMessage = SocketControlMessage (ManagedPtr SocketControlMessage)
- class GObject o => IsSocketControlMessage o
- toSocketControlMessage :: (MonadIO m, IsSocketControlMessage o) => o -> m SocketControlMessage
- noSocketControlMessage :: Maybe SocketControlMessage
- socketControlMessageDeserialize :: (HasCallStack, MonadIO m) => Int32 -> Int32 -> ByteString -> m SocketControlMessage
- socketControlMessageGetLevel :: (HasCallStack, MonadIO m, IsSocketControlMessage a) => a -> m Int32
- socketControlMessageGetMsgType :: (HasCallStack, MonadIO m, IsSocketControlMessage a) => a -> m Int32
- socketControlMessageGetSize :: (HasCallStack, MonadIO m, IsSocketControlMessage a) => a -> m Word64
- socketControlMessageSerialize :: (HasCallStack, MonadIO m, IsSocketControlMessage a) => a -> Ptr () -> m ()
Exported types
newtype SocketControlMessage Source #
Memory-managed wrapper type.
Instances
class GObject o => IsSocketControlMessage o Source #
Type class for types which can be safely cast to SocketControlMessage
, for instance with toSocketControlMessage
.
Instances
toSocketControlMessage :: (MonadIO m, IsSocketControlMessage o) => o -> m SocketControlMessage Source #
Cast to SocketControlMessage
, for types for which this is known to be safe. For general casts, use castTo
.
noSocketControlMessage :: Maybe SocketControlMessage Source #
A convenience alias for Nothing
:: Maybe
SocketControlMessage
.
Methods
deserialize
socketControlMessageDeserialize Source #
:: (HasCallStack, MonadIO m) | |
=> Int32 |
|
-> Int32 |
|
-> ByteString |
|
-> m SocketControlMessage | Returns: the deserialized message or |
Tries to deserialize a socket control message of a given
level
and type
. This will ask all known (to GType) subclasses
of SocketControlMessage
if they can understand this kind
of message and if so deserialize it into a SocketControlMessage
.
If there is no implementation for this kind of control message, Nothing
will be returned.
Since: 2.22
getLevel
socketControlMessageGetLevel Source #
:: (HasCallStack, MonadIO m, IsSocketControlMessage a) | |
=> a |
|
-> m Int32 | Returns: an integer describing the level |
Returns the "level" (i.e. the originating protocol) of the control message. This is often SOL_SOCKET.
Since: 2.22
getMsgType
socketControlMessageGetMsgType Source #
:: (HasCallStack, MonadIO m, IsSocketControlMessage a) | |
=> a |
|
-> m Int32 | Returns: an integer describing the type of control message |
Returns the protocol specific type of the control message. For instance, for UNIX fd passing this would be SCM_RIGHTS.
Since: 2.22
getSize
socketControlMessageGetSize Source #
:: (HasCallStack, MonadIO m, IsSocketControlMessage a) | |
=> a |
|
-> m Word64 | Returns: The number of bytes required. |
Returns the space required for the control message, not including headers or alignment.
Since: 2.22
serialize
socketControlMessageSerialize Source #
:: (HasCallStack, MonadIO m, IsSocketControlMessage a) | |
=> a |
|
-> Ptr () |
|
-> m () |
Converts the data in the message to bytes placed in the message.
data
is guaranteed to have enough space to fit the size
returned by socketControlMessageGetSize
on this
object.
Since: 2.22