24 #ifndef INCLUDED_OSL_SOCKET_H
25 #define INCLUDED_OSL_SOCKET_H
35 #define OSL_INADDR_NONE 0xffffffff
36 #define OSL_INVALID_PORT (-1)
295 sal_Int32 MaxPendingConnections);
330 sal_uInt32 BytesToRead,
357 sal_uInt32 BufferSize,
379 sal_uInt32 BytesToSend,
412 sal_uInt32 BytesToSend,
536 sal_uInt32 BufferLen);
560 sal_uInt32 BufferLen);
602 rtl_uString **strError);
684 rtl_uString *strHostname);
696 rtl_uString *strDottedAddr, sal_Int32 Port);
707 rtl_uString *strDottedAddr, sal_Int32 Port);
721 rtl_uString *strServicename, rtl_uString *strProtocol);
#define SAL_DLLPUBLIC
Definition: saldllapi.h:34
#define SAL_MAX_ENUM
Definition: types.h:205
unsigned char sal_uInt8
Definition: types.h:44
unsigned char sal_Bool
Definition: types.h:38
oslSocketOption
Represents socket-options.
Definition: socket.h:89
@ osl_Socket_OptionSndBuf
Definition: socket.h:104
@ osl_Socket_OptionTcpNoDelay
Definition: socket.h:117
@ osl_Socket_OptionSndLowat
Definition: socket.h:106
@ osl_Socket_OptionSndTimeo
Definition: socket.h:112
@ osl_Socket_OptionDebug
Definition: socket.h:90
@ osl_Socket_OptionReuseAddr
Definition: socket.h:92
@ osl_Socket_OptionDontRoute
Definition: socket.h:94
@ osl_Socket_OptionRcvLowat
Definition: socket.h:109
@ osl_Socket_OptionRcvBuf
Definition: socket.h:105
@ osl_Socket_OptionType
Definition: socket.h:115
@ osl_Socket_OptionError
Definition: socket.h:114
@ osl_Socket_OptionAcceptConn
Definition: socket.h:91
@ osl_Socket_OptionInvalid
Definition: socket.h:118
@ osl_Socket_OptionKeepAlive
Definition: socket.h:93
@ osl_Socket_OptionOOBinLine
Definition: socket.h:102
@ osl_Socket_Option_FORCE_EQUAL_SIZE
Definition: socket.h:119
@ osl_Socket_OptionBroadcast
Definition: socket.h:96
@ osl_Socket_OptionLinger
Definition: socket.h:99
@ osl_Socket_OptionUseLoopback
Definition: socket.h:97
@ osl_Socket_OptionRcvTimeo
Definition: socket.h:113
SAL_DLLPUBLIC sal_Bool osl_setInetPortOfSocketAddr(oslSocketAddr Addr, sal_Int32 Port)
Sets the Port of Addr.
SAL_DLLPUBLIC sal_Int32 osl_getSocketOption(oslSocket Socket, oslSocketOptionLevel Level, oslSocketOption Option, void *pBuffer, sal_uInt32 BufferLen)
Retrieves attributes associated with the socket.
SAL_DLLPUBLIC sal_Int32 osl_getInetPortOfSocketAddr(oslSocketAddr Addr)
Retrieves the internet port-number of Addr.
SAL_DLLPUBLIC oslSocketResult osl_getAddrOfSocketAddr(oslSocketAddr Addr, sal_Sequence **ppByteSeq)
Returns the addr field in the struct sockaddr.
SAL_DLLPUBLIC sal_Bool osl_listenOnSocket(oslSocket Socket, sal_Int32 MaxPendingConnections)
Prepares the socket to act as an acceptor of incoming connections.
SAL_DLLPUBLIC oslHostAddr osl_createHostAddrByName(rtl_uString *strHostname)
Create an oslHostAddr by resolving the given strHostname.
SAL_DLLPUBLIC oslHostAddr osl_createHostAddrByAddr(const oslSocketAddr Addr)
Create an oslHostAddr by reverse resolution of the given Addr.
oslSocketResult
Common return codes of socket related functions.
Definition: socket.h:197
@ osl_Socket_InProgress
Definition: socket.h:203
@ osl_Socket_Ok
Definition: socket.h:198
@ osl_Socket_Error
Definition: socket.h:199
@ osl_Socket_FORCE_EQUAL_SIZE
Definition: socket.h:204
@ osl_Socket_TimedOut
Definition: socket.h:201
@ osl_Socket_Interrupted
Definition: socket.h:202
struct oslSocketAddrImpl * oslSocketAddr
Opaque datatype SocketAddr.
Definition: socket.h:44
SAL_DLLPUBLIC sal_Bool osl_bindAddrToSocket(oslSocket Socket, oslSocketAddr Addr)
Binds the given address to the socket.
SAL_DLLPUBLIC oslSocket osl_acceptConnectionOnSocket(oslSocket Socket, oslSocketAddr *pAddr)
Waits for an ingoing connection on the socket.
SAL_DLLPUBLIC void osl_getHostnameOfHostAddr(const oslHostAddr Addr, rtl_uString **strHostname)
Get the hostname member of Addr.
struct oslHostAddrImpl * oslHostAddr
Definition: socket.h:790
SAL_DLLPUBLIC void osl_closeSocket(oslSocket Socket)
Closes the socket terminating any ongoing dataflow.
SAL_DLLPUBLIC void osl_acquireSocket(oslSocket Socket)
increases the refcount of the socket handle by one
SAL_DLLPUBLIC oslHostAddr osl_createHostAddr(rtl_uString *strHostname, const oslSocketAddr Addr)
Create an oslHostAddr from given hostname and socket address.
SAL_DLLPUBLIC sal_Bool osl_isSendReady(oslSocket Socket, const TimeValue *pTimeout)
Checks if send operations will block.
SAL_DLLPUBLIC oslSocketResult osl_setAddrOfSocketAddr(oslSocketAddr Addr, sal_Sequence *pByteSeq)
Sets the addr field in the struct sockaddr with pByteSeq.
SAL_DLLPUBLIC oslSocketResult osl_getDottedInetAddrOfSocketAddr(oslSocketAddr Addr, rtl_uString **strDottedInetAddr)
Gets the address in dotted decimal format.
SAL_DLLPUBLIC void osl_releaseSocket(oslSocket Socket)
decreases the refcount of the socket handle by one.
oslSocketType
Represents the type of a socket.
Definition: socket.h:71
@ osl_Socket_TypeStream
Definition: socket.h:72
@ osl_Socket_TypeRdm
Definition: socket.h:75
@ osl_Socket_TypeSeqPacket
Definition: socket.h:78
@ osl_Socket_Type_FORCE_EQUAL_SIZE
Definition: socket.h:82
@ osl_Socket_TypeInvalid
Definition: socket.h:81
@ osl_Socket_TypeRaw
Definition: socket.h:74
@ osl_Socket_TypeDgram
Definition: socket.h:73
SAL_DLLPUBLIC oslSocketError osl_getLastSocketError(oslSocket Socket)
Returns a constant describing the last error for the socket system.
SAL_DLLPUBLIC oslSocketAddr osl_createInetBroadcastAddr(rtl_uString *strDottedAddr, sal_Int32 Port)
Create an internet address usable for sending broadcast datagrams.
SAL_DLLPUBLIC sal_Bool osl_isNonBlockingMode(oslSocket Socket)
Query state of non-blocking-mode of the socket.
SAL_DLLPUBLIC void osl_destroySocketAddr(oslSocketAddr Addr)
Frees all resources allocated by Addr.
SAL_DLLPUBLIC oslSocketAddr osl_getLocalAddrOfSocket(oslSocket Socket)
Retrieves the Address of the local end of the socket.
SAL_DLLPUBLIC sal_Bool osl_isReceiveReady(oslSocket Socket, const TimeValue *pTimeout)
Checks if read operations will block.
SAL_DLLPUBLIC oslSocketType osl_getSocketType(oslSocket Socket)
Queries the socket for its type.
SAL_DLLPUBLIC sal_Bool osl_setSocketOption(oslSocket Socket, oslSocketOptionLevel Level, oslSocketOption Option, void *pBuffer, sal_uInt32 BufferLen)
Sets the sockets attributes.
struct oslSocketImpl * oslSocket
Definition: socket.h:216
SAL_DLLPUBLIC sal_Int32 osl_receiveSocket(oslSocket Socket, void *pBuffer, sal_uInt32 BytesToRead, oslSocketMsgFlag Flag)
Tries to receive BytesToRead data from the connected socket, if no error occurs.
SAL_DLLPUBLIC oslSocket osl_createSocket(oslAddrFamily Family, oslSocketType Type, oslProtocol Protocol)
Create a socket of the specified Family and Type.
SAL_DLLPUBLIC sal_Int32 osl_writeSocket(oslSocket Socket, const void *pBuffer, sal_Int32 nSize)
Writes n bytes from pBuffer to the stream.
oslSocketOptionLevel
Represents the different socket-option levels.
Definition: socket.h:125
@ osl_Socket_LevelTcp
Definition: socket.h:127
@ osl_Socket_LevelInvalid
Definition: socket.h:128
@ osl_Socket_Level_FORCE_EQUAL_SIZE
Definition: socket.h:129
@ osl_Socket_LevelSocket
Definition: socket.h:126
SAL_DLLPUBLIC oslSocketAddr osl_createInetSocketAddr(rtl_uString *strDottedAddr, sal_Int32 Port)
Create an internet-address, consisting of host address and port.
SAL_DLLPUBLIC oslHostAddr osl_copyHostAddr(const oslHostAddr Addr)
Create a copy of the given Addr.
SAL_DLLPUBLIC oslSocketAddr osl_createEmptySocketAddr(oslAddrFamily Family)
Creates a socket-address for the given family.
SAL_DLLPUBLIC oslSocketAddr osl_getPeerAddrOfSocket(oslSocket Socket)
Retrieves the Address of the remote end of the socket.
oslSocketDirection
Used by shutdown to denote which end of the socket to "close".
Definition: socket.h:148
@ osl_Socket_DirRead
Definition: socket.h:149
@ osl_Socket_DirWrite
Definition: socket.h:150
@ osl_Socket_DirInvalid
Definition: socket.h:152
@ osl_Socket_Dir_FORCE_EQUAL_SIZE
Definition: socket.h:153
@ osl_Socket_DirReadWrite
Definition: socket.h:151
SAL_DLLPUBLIC sal_Int32 osl_readSocket(oslSocket Socket, void *pBuffer, sal_Int32 nSize)
Retrieves n bytes from the stream and copies them into pBuffer.
SAL_DLLPUBLIC sal_Int32 osl_sendToSocket(oslSocket Socket, oslSocketAddr ReceiverAddr, const void *pBuffer, sal_uInt32 BytesToSend, oslSocketMsgFlag Flag)
Tries to send one datagram with BytesToSend data to the given ReceiverAddr via the (implicitly unconn...
SAL_DLLPUBLIC sal_Int32 osl_sendSocket(oslSocket Socket, const void *pBuffer, sal_uInt32 BytesToSend, oslSocketMsgFlag Flag)
Tries to send BytesToSend data from the connected socket, if no error occurs.
SAL_DLLPUBLIC sal_Bool osl_enableNonBlockingMode(oslSocket Socket, sal_Bool On)
Enables/disables non-blocking-mode of the socket.
oslProtocol
represent a specific protocol within an address-family
Definition: socket.h:59
@ osl_Socket_ProtocolIpx
Definition: socket.h:61
@ osl_Socket_ProtocolInvalid
Definition: socket.h:64
@ osl_Socket_ProtocolSpx
Definition: socket.h:62
@ osl_Socket_Protocol_FORCE_EQUAL_SIZE
Definition: socket.h:65
@ osl_Socket_ProtocolSpxII
Definition: socket.h:63
@ osl_Socket_ProtocolIp
Definition: socket.h:60
oslSocketError
Describes the various error socket error conditions, which may occur.
Definition: socket.h:158
@ osl_Socket_E_ProtocolNoSupport
Definition: socket.h:165
@ osl_Socket_E_TimedOut
Definition: socket.h:184
@ osl_Socket_E_WouldBlock
Definition: socket.h:188
@ osl_Socket_E_NetUnreachable
Definition: socket.h:174
@ osl_Socket_E_DestAddrReq
Definition: socket.h:161
@ osl_Socket_E_Already
Definition: socket.h:189
@ osl_Socket_E_HostUnreachable
Definition: socket.h:187
@ osl_Socket_E_HostDown
Definition: socket.h:186
@ osl_Socket_E_NotSocket
Definition: socket.h:160
@ osl_Socket_E_IsConnected
Definition: socket.h:180
@ osl_Socket_E_Shutdown
Definition: socket.h:182
@ osl_Socket_E_ConnAborted
Definition: socket.h:177
@ osl_Socket_E_TooManyRefs
Definition: socket.h:183
@ osl_Socket_E_TypeNoSupport
Definition: socket.h:166
@ osl_Socket_E_MsgSize
Definition: socket.h:162
@ osl_Socket_E_NetReset
Definition: socket.h:175
@ osl_Socket_E_PfNoSupport
Definition: socket.h:168
@ osl_Socket_E_AfNoSupport
Definition: socket.h:169
@ osl_Socket_E_None
Definition: socket.h:159
@ osl_Socket_E_InProgress
Definition: socket.h:190
@ osl_Socket_E_AddrInUse
Definition: socket.h:171
@ osl_Socket_E_Prototype
Definition: socket.h:163
@ osl_Socket_E_ConnReset
Definition: socket.h:178
@ osl_Socket_E_NotConnected
Definition: socket.h:181
@ osl_Socket_E_NoBufferSpace
Definition: socket.h:179
@ osl_Socket_E_NoProtocol
Definition: socket.h:164
@ osl_Socket_E_OpNotSupport
Definition: socket.h:167
@ osl_Socket_E_ConnRefused
Definition: socket.h:185
@ osl_Socket_E_FORCE_EQUAL_SIZE
Definition: socket.h:192
@ osl_Socket_E_NetDown
Definition: socket.h:173
@ osl_Socket_E_InvalidError
Definition: socket.h:191
@ osl_Socket_E_AddrNotAvail
Definition: socket.h:172
sal_uInt8 oslSocketIpxNetNumber[4]
Definition: socket.h:207
SAL_DLLPUBLIC sal_Int32 osl_receiveFromSocket(oslSocket Socket, oslSocketAddr SenderAddr, void *pBuffer, sal_uInt32 BufferSize, oslSocketMsgFlag Flag)
Tries to receives BufferSize data from the (usually unconnected) (datagram-)socket,...
sal_uInt8 oslSocketIpxNodeNumber[6]
Definition: socket.h:208
oslAddrFamily
Represents the address-family of a socket.
Definition: socket.h:49
@ osl_Socket_FamilyInvalid
Definition: socket.h:52
@ osl_Socket_Family_FORCE_EQUAL_SIZE
Definition: socket.h:53
@ osl_Socket_FamilyInet
Definition: socket.h:50
@ osl_Socket_FamilyIpx
Definition: socket.h:51
SAL_DLLPUBLIC oslSocketResult osl_connectSocketTo(oslSocket Socket, oslSocketAddr Addr, const TimeValue *pTimeout)
Connects the socket to the given address.
SAL_DLLPUBLIC void osl_destroyHostAddr(oslHostAddr Addr)
Frees all resources allocated by Addr.
SAL_DLLPUBLIC oslSocketResult osl_getLocalHostname(rtl_uString **strLocalHostname)
Retrieve this machines hostname (NOT the FQDN)
SAL_DLLPUBLIC oslSocketAddr osl_getSocketAddrOfHostAddr(const oslHostAddr Addr)
Get the socket address member of Addr.
SAL_DLLPUBLIC sal_Int32 osl_getServicePort(rtl_uString *strServicename, rtl_uString *strProtocol)
Looks up the port-number designated to the specified service/protocol-pair.
SAL_DLLPUBLIC oslSocketAddr osl_resolveHostname(rtl_uString *strHostname)
Uses the systems name-service interface to find an address for strHostname.
SAL_DLLPUBLIC oslSocketResult osl_getHostnameOfSocketAddr(oslSocketAddr Addr, rtl_uString **strHostname)
Returns the hostname represented by Addr.
oslSocketMsgFlag
Represents flags to be used with send/recv-calls.
Definition: socket.h:135
@ osl_Socket_MsgDontRoute
Definition: socket.h:139
@ osl_Socket_MsgNormal
Definition: socket.h:136
@ osl_Socket_Msg_FORCE_EQUAL_SIZE
Definition: socket.h:142
@ osl_Socket_MsgInvalid
Definition: socket.h:141
@ osl_Socket_MsgMaxIOVLen
Definition: socket.h:140
@ osl_Socket_MsgPeek
Definition: socket.h:138
@ osl_Socket_MsgOOB
Definition: socket.h:137
SAL_DLLPUBLIC oslSocketAddr osl_copySocketAddr(oslSocketAddr Addr)
Creates a new SocketAddress and fills it from Addr.
SAL_DLLPUBLIC sal_Bool osl_isExceptionPending(oslSocket Socket, const TimeValue *pTimeout)
Checks if a request for out-of-band data will block.
SAL_DLLPUBLIC void osl_getLastSocketErrorDescription(oslSocket Socket, rtl_uString **strError)
returns a string which describes the last socket error.
SAL_DLLPUBLIC sal_Bool osl_isEqualSocketAddr(oslSocketAddr Addr1, oslSocketAddr Addr2)
Compares the values of two SocketAddresses.
SAL_DLLPUBLIC sal_Bool osl_shutdownSocket(oslSocket Socket, oslSocketDirection Direction)
Shuts down communication on a connected socket.
SAL_DLLPUBLIC oslAddrFamily osl_getFamilyOfSocketAddr(oslSocketAddr Addr)
Retrieves the address-family from the Addr.
This is the binary specification of a SAL sequence.
Definition: types.h:304