1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_OSL_SOCKET_H
21 #define INCLUDED_OSL_SOCKET_H
23 #include <rtl/ustring.h>
24 #include <rtl/byteseq.h>
27 #include <rtl/tencinfo.h>
34 #define OSL_INADDR_NONE 0xffffffff
35 #define OSL_INVALID_PORT (-1)
38 Opaque datatype SocketAddr.
40 typedef struct oslSocketAddrImpl
* oslSocketAddr
;
44 Represents the address-family of a socket
47 osl_Socket_FamilyInet
, /* IP */
48 osl_Socket_FamilyIpx
, /* Novell IPX/SPX */
49 osl_Socket_FamilyInvalid
, /* always last entry in enum! */
50 osl_Socket_Family_FORCE_EQUAL_SIZE
= SAL_MAX_ENUM
54 represent a specific protocol within a address-family
57 osl_Socket_ProtocolIp
, /* for all af_inet */
58 osl_Socket_ProtocolIpx
, /* af_ipx datagram sockets (IPX) */
59 osl_Socket_ProtocolSpx
, /* af_ipx seqpacket or stream for SPX */
60 osl_Socket_ProtocolSpxII
, /* af_ipx seqpacket or stream for SPX II */
61 osl_Socket_ProtocolInvalid
,
62 osl_Socket_Protocol_FORCE_EQUAL_SIZE
= SAL_MAX_ENUM
67 Represents the type of a socket
70 osl_Socket_TypeStream
,
74 osl_Socket_TypeSeqPacket
,
75 osl_Socket_TypeInvalid
, /* always last entry in enum! */
76 osl_Socket_Type_FORCE_EQUAL_SIZE
= SAL_MAX_ENUM
81 Represents socket-options
84 osl_Socket_OptionDebug
,
85 osl_Socket_OptionAcceptConn
,
86 osl_Socket_OptionReuseAddr
,
87 osl_Socket_OptionKeepAlive
,
88 osl_Socket_OptionDontRoute
,
89 osl_Socket_OptionBroadcast
,
90 osl_Socket_OptionUseLoopback
,
91 osl_Socket_OptionLinger
,
92 osl_Socket_OptionOOBinLine
,
93 osl_Socket_OptionSndBuf
,
94 osl_Socket_OptionRcvBuf
,
95 osl_Socket_OptionSndLowat
,
96 osl_Socket_OptionRcvLowat
,
97 osl_Socket_OptionSndTimeo
,
98 osl_Socket_OptionRcvTimeo
,
99 osl_Socket_OptionError
,
100 osl_Socket_OptionType
,
101 osl_Socket_OptionTcpNoDelay
,
102 osl_Socket_OptionInvalid
, /* always last entry in enum! */
103 osl_Socket_Option_FORCE_EQUAL_SIZE
= SAL_MAX_ENUM
107 Represents the different socket-option levels
110 osl_Socket_LevelSocket
,
112 osl_Socket_LevelInvalid
, /* always last entry in enum! */
113 osl_Socket_Level_FORCE_EQUAL_SIZE
= SAL_MAX_ENUM
114 } oslSocketOptionLevel
;
118 Represents flags to be used with send/recv-calls.
121 osl_Socket_MsgNormal
,
124 osl_Socket_MsgDontRoute
,
125 osl_Socket_MsgMaxIOVLen
,
126 osl_Socket_MsgInvalid
, /* always last entry in enum! */
127 osl_Socket_Msg_FORCE_EQUAL_SIZE
= SAL_MAX_ENUM
131 Used by shutdown to denote which end of the socket to "close".
136 osl_Socket_DirReadWrite
,
137 osl_Socket_DirInvalid
, /* always last entry in enum! */
138 osl_Socket_Dir_FORCE_EQUAL_SIZE
= SAL_MAX_ENUM
139 } oslSocketDirection
;
141 /** Describes the various error socket error conditions, which may
144 osl_Socket_E_None
, /* no error */
145 osl_Socket_E_NotSocket
, /* Socket operation on non-socket */
146 osl_Socket_E_DestAddrReq
, /* Destination address required */
147 osl_Socket_E_MsgSize
, /* Message too long */
148 osl_Socket_E_Prototype
, /* Protocol wrong type for socket */
149 osl_Socket_E_NoProtocol
, /* Protocol not available */
150 osl_Socket_E_ProtocolNoSupport
, /* Protocol not supported */
151 osl_Socket_E_TypeNoSupport
, /* Socket type not supported */
152 osl_Socket_E_OpNotSupport
, /* Operation not supported on socket */
153 osl_Socket_E_PfNoSupport
, /* Protocol family not supported */
154 osl_Socket_E_AfNoSupport
, /* Address family not supported by */
155 /* protocol family */
156 osl_Socket_E_AddrInUse
, /* Address already in use */
157 osl_Socket_E_AddrNotAvail
, /* Can't assign requested address */
158 osl_Socket_E_NetDown
, /* Network is down */
159 osl_Socket_E_NetUnreachable
, /* Network is unreachable */
160 osl_Socket_E_NetReset
, /* Network dropped connection because */
162 osl_Socket_E_ConnAborted
, /* Software caused connection abort */
163 osl_Socket_E_ConnReset
, /* Connection reset by peer */
164 osl_Socket_E_NoBufferSpace
, /* No buffer space available */
165 osl_Socket_E_IsConnected
, /* Socket is already connected */
166 osl_Socket_E_NotConnected
, /* Socket is not connected */
167 osl_Socket_E_Shutdown
, /* Can't send after socket shutdown */
168 osl_Socket_E_TooManyRefs
, /* Too many references: can't splice */
169 osl_Socket_E_TimedOut
, /* Connection timed out */
170 osl_Socket_E_ConnRefused
, /* Connection refused */
171 osl_Socket_E_HostDown
, /* Host is down */
172 osl_Socket_E_HostUnreachable
, /* No route to host */
173 osl_Socket_E_WouldBlock
, /* call would block on non-blocking socket */
174 osl_Socket_E_Already
, /* operation already in progress */
175 osl_Socket_E_InProgress
, /* operation now in progress */
176 osl_Socket_E_InvalidError
, /* unmapped error: always last entry in enum! */
177 osl_Socket_E_FORCE_EQUAL_SIZE
= SAL_MAX_ENUM
180 /** Common return codes of socket related functions.
183 osl_Socket_Ok
, /* successful completion */
184 osl_Socket_Error
, /* error occurred, check osl_getLastSocketError() for details */
185 osl_Socket_TimedOut
, /* blocking operation timed out */
186 osl_Socket_Interrupted
, /* blocking operation was interrupted */
187 osl_Socket_InProgress
, /* nonblocking operation is in progress */
188 osl_Socket_FORCE_EQUAL_SIZE
= SAL_MAX_ENUM
191 typedef sal_uInt8 oslSocketIpxNetNumber
[4];
192 typedef sal_uInt8 oslSocketIpxNodeNumber
[6];
194 /**@} end section types
197 /**@{ begin section oslSocketAddr
200 /** Creates a socket-address for the given family.
201 @param Family If family == osl_Socket_FamilyInet the address is
202 set to INADDR_ANY port 0.
203 @return 0 if address could not be created.
205 SAL_DLLPUBLIC oslSocketAddr SAL_CALL
osl_createEmptySocketAddr(
206 oslAddrFamily Family
);
209 /** Creates a new SocketAddress and fills it from Addr.
211 SAL_DLLPUBLIC oslSocketAddr SAL_CALL
osl_copySocketAddr(
214 /** Compares the values of two SocketAddresses.
215 @retval sal_True if both addresses denote the same socket address.
216 @retval sal_False if both addresses do not denote the same socket address.
218 SAL_DLLPUBLIC sal_Bool SAL_CALL
osl_isEqualSocketAddr(
219 oslSocketAddr Addr1
, oslSocketAddr Addr2
);
221 /** Uses the systems name-service interface to find an address for strHostname.
222 @param[in] strHostname The name for which you search for an address.
223 @return The desired address if one could be found, otherwise 0.
224 Don't forget to destroy the address if you don't need it any longer.
226 SAL_DLLPUBLIC oslSocketAddr SAL_CALL
osl_resolveHostname(
227 rtl_uString
*strHostname
);
229 /** Create an internet address usable for sending broadcast datagrams.
230 To limit the broadcast to your subnet, pass your hosts IP address
231 in dotted decimal notation as first argument.
232 @see osl_sendToSocket()
234 @param[in] strDottedAddr dotted decimal internet address, may be 0.
235 @param[in] Port port number in host byte order.
236 @retval 0 if address could not be created.
238 SAL_DLLPUBLIC oslSocketAddr SAL_CALL
osl_createInetBroadcastAddr (
239 rtl_uString
*strDottedAddr
, sal_Int32 Port
);
242 /** Create an internet-address, consisting of host address and port.
243 We interpret strDottedAddr as a dotted-decimal inet-addr
244 (e.g. "141.99.128.50").
245 @param strDottedAddr [in] String with dotted address.
246 @param Port [in] portnumber in host byte order.
247 @retval 0 if address could not be created.
249 SAL_DLLPUBLIC oslSocketAddr SAL_CALL
osl_createInetSocketAddr (
250 rtl_uString
*strDottedAddr
, sal_Int32 Port
);
253 /** Frees all resources allocated by Addr. The handle Addr must not
254 be used after the call anymore.
256 SAL_DLLPUBLIC
void SAL_CALL
osl_destroySocketAddr(
259 /** Looks up the port-number designated to the specified service/protocol-pair.
261 @retval OSL_INVALID_PORT if no appropriate entry was found, otherwise the port-number.
263 SAL_DLLPUBLIC sal_Int32 SAL_CALL
osl_getServicePort(
264 rtl_uString
*strServicename
, rtl_uString
*strProtocol
);
268 /** Retrieves the address-family from the Addr.
269 @return the family of the socket-address.
270 In case of an unknown family you get <code>osl_Socket_FamilyInvalid</code>.
272 SAL_DLLPUBLIC oslAddrFamily SAL_CALL
osl_getFamilyOfSocketAddr(
276 /** Retrieves the internet port-number of Addr.
277 @return the port-number of the address in host-byte order. If Addr
278 is not an address of type <code>osl_Socket_FamilyInet</code>, it returns <code>OSL_INVALID_PORT</code>
280 SAL_DLLPUBLIC sal_Int32 SAL_CALL
osl_getInetPortOfSocketAddr(
284 /** Sets the Port of Addr.
285 @param[in] Addr the SocketAddr to perfom the operation on.
286 @param[in] Port is expected in host byte-order.
287 @retval sal_False if Addr is not an inet-addr.
289 SAL_DLLPUBLIC sal_Bool SAL_CALL
osl_setInetPortOfSocketAddr(
290 oslSocketAddr Addr
, sal_Int32 Port
);
293 /** Returns the hostname represented by Addr.
294 @param[in] Addr The socket address from which to extract the hostname.
295 @param[out] strHostname The hostname represented by the address. If
296 there is no hostname to be found, it returns 0.
298 SAL_DLLPUBLIC oslSocketResult SAL_CALL
osl_getHostnameOfSocketAddr(
299 oslSocketAddr Addr
, rtl_uString
**strHostname
);
302 /** Gets the address in dotted decimal format.
303 @param[in] Addr The socket address from which to extract the dotted decimal address.
304 @param[out] strDottedInetAddr Contains the dotted decimal address
305 (e.g. 141.99.20.34) represented by the address.
306 If the address is invalid or not of type <code>osl_Socket_FamilyInet</code>,
308 @retval osl_Socket_Ok
309 @retval osl_Socket_Error
311 SAL_DLLPUBLIC oslSocketResult SAL_CALL
osl_getDottedInetAddrOfSocketAddr(
312 oslSocketAddr Addr
, rtl_uString
**strDottedInetAddr
);
314 /** Sets the addr field in the struct sockaddr with pByteSeq. pByteSeq must be in network byte order.
316 SAL_DLLPUBLIC oslSocketResult SAL_CALL
osl_setAddrOfSocketAddr(
317 oslSocketAddr Addr
, sal_Sequence
*pByteSeq
);
319 /** Returns the addr field in the struct sockaddr.
320 @param[in] Addr The socket address from which to extract the ipaddress.
321 @param[out] ppByteSeq After the call, *ppByteSeq contains the ipaddress
322 in network byteorder. *ppByteSeq may be 0 in case of an invalid socket handle.
323 @retval osl_Socket_Ok
324 @retval osl_Socket_Error
326 SAL_DLLPUBLIC oslSocketResult SAL_CALL
osl_getAddrOfSocketAddr(
327 oslSocketAddr Addr
, sal_Sequence
**ppByteSeq
);
330 Opaque datatype HostAddr.
332 typedef struct oslHostAddrImpl
* oslHostAddr
;
335 /** Create an oslHostAddr from given hostname and socket address.
336 @param[in] strHostname The hostname to be stored.
337 @param[in] Addr The socket address to be stored.
338 @return The created address or 0 upon failure.
340 SAL_DLLPUBLIC oslHostAddr SAL_CALL
osl_createHostAddr(
341 rtl_uString
*strHostname
, const oslSocketAddr Addr
);
344 /** Create an oslHostAddr by resolving the given strHostname.
345 Successful name resolution should result in the fully qualified
346 domain name (FQDN) and its address as hostname and socket address
347 members of the resulting oslHostAddr.
348 @param[in] strHostname The hostname to be resolved.
349 @return The resulting address or 0 upon failure.
351 SAL_DLLPUBLIC oslHostAddr SAL_CALL
osl_createHostAddrByName(rtl_uString
*strHostname
);
354 /** Create an oslHostAddr by reverse resolution of the given Addr.
355 Successful name resolution should result in the fully qualified
356 domain name (FQDN) and its address as hostname and socket address
357 members of the resulting oslHostAddr.
358 @param[in] Addr The socket address to be reverse resolved.
359 @return The resulting address or 0 upon failure.
361 SAL_DLLPUBLIC oslHostAddr SAL_CALL
osl_createHostAddrByAddr(const oslSocketAddr Addr
);
364 /** Create a copy of the given Addr.
365 @return The copied address or 0 upon failure.
367 SAL_DLLPUBLIC oslHostAddr SAL_CALL
osl_copyHostAddr(const oslHostAddr Addr
);
370 /** Frees all resources allocated by Addr. The handle Addr must not
371 be used after the call anymore.
373 SAL_DLLPUBLIC
void SAL_CALL
osl_destroyHostAddr(oslHostAddr Addr
);
376 /** Get the hostname member of Addr.
377 @return The hostname or 0 upon failure.
379 SAL_DLLPUBLIC
void SAL_CALL
osl_getHostnameOfHostAddr(const oslHostAddr Addr
, rtl_uString
**strHostname
);
382 /** Get the socket address member of Addr.
383 @return The socket address or 0 upon failure.
385 SAL_DLLPUBLIC oslSocketAddr SAL_CALL
osl_getSocketAddrOfHostAddr(const oslHostAddr Addr
);
387 /** Retrieve this machines hostname.
388 May not always be a fully qualified domain name (FQDN).
389 @param strLocalHostname out-parameter. The string that receives the local host name.
390 @retval sal_True upon success
393 SAL_DLLPUBLIC oslSocketResult SAL_CALL
osl_getLocalHostname(rtl_uString
**strLocalHostname
);
396 /**@} end section oslHostAddr
399 /**@{ begin section oslSocket
403 /*-***************************************************************************/
405 /*-***************************************************************************/
407 typedef struct oslSocketImpl
* oslSocket
;
409 /** increases the refcount of the socket handle by one
411 SAL_DLLPUBLIC
void SAL_CALL
osl_acquireSocket( oslSocket Socket
);
413 /** decreases the refcount of the socket handle by one.
415 If the refcount drops to zero, the underlying socket handle
416 is destroyed and becomes invalid.
418 SAL_DLLPUBLIC
void SAL_CALL
osl_releaseSocket( oslSocket Socket
);
420 /** Create a socket of the specified Family and Type. The semantic of
421 the Protocol parameter depends on the given family and type.
422 @retval 0 if socket could not be created, otherwise you get a handle
423 to the allocated socket-datastructure.
425 SAL_DLLPUBLIC oslSocket SAL_CALL
osl_createSocket(
426 oslAddrFamily Family
,
428 oslProtocol Protocol
);
430 /** Retrieves the Address of the local end of the socket.
431 Note that a socket must be bound or connected before
432 a valid address can be returned.
433 @retval 0 if socket-address could not be created, otherwise you get
434 the created Socket-Address.
436 SAL_DLLPUBLIC oslSocketAddr SAL_CALL
osl_getLocalAddrOfSocket(oslSocket Socket
);
438 /** Retrieves the Address of the remote end of the socket.
439 Note that a socket must be connected before
440 a valid address can be returned.
441 @retval 0 if socket-address could not be created, otherwise you get
442 the created Socket-Address.
444 SAL_DLLPUBLIC oslSocketAddr SAL_CALL
osl_getPeerAddrOfSocket(oslSocket Socket
);
446 /** Binds the given address to the socket.
449 @retval sal_False if the bind failed
450 @retval sal_True if bind is successful
451 @see osl_getLastSocketError()
453 SAL_DLLPUBLIC sal_Bool SAL_CALL
osl_bindAddrToSocket(
457 /** Connects the socket to the given address.
459 @param[in] Socket a bound socket.
460 @param[in] Addr the peer address.
461 @param pTimeout Timeout value or NULL for blocking.
463 @retval osl_Socket_Ok on successful connection,
464 @retval osl_Socket_TimedOut if operation timed out,
465 @retval osl_Socket_Interrupted if operation was interrupted
466 @retval osl_Socket_Error if the connection failed.
468 SAL_DLLPUBLIC oslSocketResult SAL_CALL
osl_connectSocketTo(
471 const TimeValue
* pTimeout
);
474 /** Prepares the socket to act as an acceptor of incoming connections.
475 You should call "listen" before you use "accept".
476 @param[in] Socket The socket to listen on.
477 @param[in] MaxPendingConnections denotes the length of the queue of
478 pending connections for this socket. If MaxPendingConnections is
479 -1, the systems default value will be used (Usually 5).
480 @retval sal_False if the listen failed.
482 SAL_DLLPUBLIC sal_Bool SAL_CALL
osl_listenOnSocket(
484 sal_Int32 MaxPendingConnections
);
487 /** Waits for an ingoing connection on the socket.
488 This call blocks if there is no incoming connection present.
489 @param[in] Socket The socket to accept the connection on.
490 @param[in] pAddr if pAddr is != 0, the peers address is returned.
491 @retval 0 if the accept-call failed, otherwise you get a socket
492 representing the new connection.
494 SAL_DLLPUBLIC oslSocket SAL_CALL osl_acceptConnectionOnSocket
496 oslSocketAddr
* pAddr
);
498 /** Tries to receive BytesToRead data from the connected socket,
499 if no error occurs. Note that incomplete recvs due to
500 packet boundaries may occur.
502 @param[in] Socket A connected socket to be used to listen on.
503 @param[out] pBuffer Points to a buffer that will be filled with the received
505 @param[in] BytesToRead The number of bytes to read. pBuffer must have at least
507 @param[in] Flag Modifier for the call. Valid values are:
511 osl_Socket_MsgDontRoute
512 osl_Socket_MsgMaxIOVLen
514 @return the number of received bytes.
516 SAL_DLLPUBLIC sal_Int32 SAL_CALL
osl_receiveSocket(
519 sal_uInt32 BytesToRead
,
520 oslSocketMsgFlag Flag
);
522 /** Tries to receives BufferSize data from the (usually unconnected)
523 (datagram-)socket, if no error occurs.
525 @param[in] Socket A bound socket to be used to listen for a datagram.
526 @param[out] SenderAddr A pointer to a created oslSocketAddr handle
527 or to a null handle. After the call, it will contain the constructed
528 oslSocketAddr of the datagrams sender. If pSenderAddr itself is 0,
530 @param[out] pBuffer Points to a buffer that will be filled with the received
532 @param[in] BufferSize The size of pBuffer.
533 @param[in] Flag Modifier for the call. Valid values are:
537 osl_Socket_MsgDontRoute
538 osl_Socket_MsgMaxIOVLen
540 @return the number of received bytes.
542 SAL_DLLPUBLIC sal_Int32 SAL_CALL
osl_receiveFromSocket(
544 oslSocketAddr SenderAddr
,
546 sal_uInt32 BufferSize
,
547 oslSocketMsgFlag Flag
);
549 /** Tries to send BytesToSend data from the connected socket,
552 @param[in] Socket A connected socket.
553 @param[in] pBuffer Points to a buffer that contains the send-data.
554 @param[in] BytesToSend The number of bytes to send. pBuffer must have at least
556 @param[in] Flag Modifier for the call. Valid values are:
557 <li><code>osl_Socket_MsgNormal</code>
558 <li><code>osl_Socket_MsgOOB</code>
559 <li><code>osl_Socket_MsgPeek</code>
560 <li><code>osl_Socket_MsgDontRoute</code>
561 <li><code>osl_Socket_MsgMaxIOVLen</code>
563 @return the number of transferred bytes.
565 SAL_DLLPUBLIC sal_Int32 SAL_CALL
osl_sendSocket(
568 sal_uInt32 BytesToSend
,
569 oslSocketMsgFlag Flag
);
571 /** Tries to send one datagram with BytesToSend data to the given ReceiverAddr
572 via the (implicitly unconnected) datagram-socket.
573 Since there is only sent one packet, the function sends the data always complete
574 even with incomplete packet boundaries.
576 @param[in] Socket A bound or unbound socket. Socket will be bound
577 after a successful call.
579 @param[in] ReceiverAddr An initialized oslSocketAddress that contains
580 the destination address for this send.
582 @param[in] pBuffer Points to a buffer that contains the send-data.
583 @param[in] BytesToSend The number of bytes to send. pBuffer must have at least
585 @param Flag [in] Modifier for the call. Valid values are:
586 <li><code>osl_Socket_MsgNormal</code>
587 <li><code>osl_Socket_MsgOOB</code>
588 <li><code>osl_Socket_MsgPeek</code>
589 <li><code>osl_Socket_MsgDontRoute</code>
590 <li><code>osl_Socket_MsgMaxIOVLen</code>
592 @return the number of transferred bytes.
594 SAL_DLLPUBLIC sal_Int32 SAL_CALL
osl_sendToSocket(
596 oslSocketAddr ReceiverAddr
,
598 sal_uInt32 BytesToSend
,
599 oslSocketMsgFlag Flag
);
601 /** Checks if read operations will block.
603 You can specify a timeout-value in seconds/microseconds that denotes
604 how long the operation will block if the Socket is not ready.
606 @retval sal_True if read operations (recv, recvFrom, accept) on the Socket
608 @retval sal_False if it would block or if an error occurred.
610 @param Socket the Socket to perfom the operation on.
611 @param pTimeout if NULL, the operation will block without a timeout.
613 SAL_DLLPUBLIC sal_Bool SAL_CALL
osl_isReceiveReady(
614 oslSocket Socket
, const TimeValue
* pTimeout
);
616 /** Checks if send operations will block.
617 You can specify a timeout-value in seconds/microseconds that denotes
618 how long the operation will block if the Socket is not ready.
619 @retval sal_True if send operations (send, sendTo) on the Socket
621 @retval sal_False if it would block or if an error occurred.
623 @param Socket the Socket to perfom the operation on.
624 @param pTimeout if NULL, the operation will block without a timeout. Otherwise
625 the time define by timeout value.
627 SAL_DLLPUBLIC sal_Bool SAL_CALL
osl_isSendReady(
628 oslSocket Socket
, const TimeValue
* pTimeout
);
630 /** Checks if a request for out-of-band data will block.
631 You can specify a timeout-value in seconds/microseconds that denotes
632 how long the operation will block if the Socket has no pending OOB data.
633 @retval sal_True if OOB-request operations (recv with appropriate flags)
634 on the Socket will NOT block
635 @retval sal_False if it would block or if an error occurred.
637 @param Socket the Socket to perfom the operation on.
638 @param pTimeout if NULL, the operation will block without a timeout.
640 SAL_DLLPUBLIC sal_Bool SAL_CALL
osl_isExceptionPending(
641 oslSocket Socket
, const TimeValue
* pTimeout
);
643 /** Shuts down communication on a connected socket.
644 @param[in] Socket the Socket to perfom the operation on.
645 @param[in] Direction denotes which end of the socket
648 <li> <code>osl_Socket_DirRead</code> closes read operations.
649 <li> <code>osl_Socket_DirReadWrite</code> closes write operations.
650 <li> <code>osl_Socket_DirWrite</code> closes read and write operations.
652 @return <code>sal_True</code> if the socket could be closed down.
654 SAL_DLLPUBLIC sal_Bool SAL_CALL
osl_shutdownSocket(oslSocket Socket
,
655 oslSocketDirection Direction
);
657 /** Retrieves attributes associated with the socket.
658 @param Socket is the socket to query.
660 @param Level selects the level for which an option should be queried.
663 <li> osl_sol_socket: Socket Level
664 <li> osl_sol_tcp: Level of Transmission Control Protocol
667 @param Option denotes the option to query.
668 Valid values (depending on the Level) are:
670 <li> <code>osl_Socket_Option_Debug</code><br>
671 (sal_Bool) Socket debug flag 1 = enabled, 0 = disabled.
673 <li> <code>osl_Socket_OptionAcceptConn</code><br>
674 <li> <code>osl_Socket_OptionReuseAddr</code><br>
675 (sal_Bool) Allows the socket to be bound to an address that is
677 1 = multiple bound allowed, 0 = no multiple bounds allowed
679 <li><code>osl_Socket_OptionKeepAlive</code><br>
680 (sal_Bool) Keepalive packets are sent by the underlying socket.
681 1 = enabled, 0 = disabled
683 <li><code>osl_Socket_OptionDontRoute</code><br>
684 (sal_Bool) Do not route: send directly to interface.
685 1 = do not route , 0 = routing possible
687 <li><code>osl_Socket_OptionBroadcast</code><br>
688 (sal_Bool) Transmission of broadcast messages are allowed on the socket.
689 1 = transmission allowed, 0 = transmission disallowed
691 <li><code>osl_Socket_OptionUseLoopback</code><br>
693 <li><code>osl_Socket_OptionLinger</code><br>
694 (sal_Int32) Linger on close if unsent data is present.
695 0 = linger is off, > 0 = timeout in seconds.
697 <li><code>osl_Socket_OptionOOBinLine</code><br>
700 <li><code>osl_Socket_OptionSndBuf</code><br>
701 (sal_Int32) Size of the send buffer in bytes. Data is sent after
702 SndTimeo or when the buffer is full. This allows faster writing
705 <li><code>osl_Socket_OptionRcvBuf</code><br>
706 (sal_Int32) Size of the receive buffer in bytes. Data is sent after
707 SndTimeo or when the buffer is full. This allows faster writing
708 to the socket and larger packet sizes.
710 <li><code>osl_Socket_OptionSndLowat</code><br>
712 <li><code>osl_Socket_OptionRcvLowat</code><br>
714 <li><code>osl_Socket_OptionSndTimeo</code><br>
715 (sal_Int32) Data is sent after this timeout. This allows gathering
716 of data to send larger packages but increases latency times.
718 <li><code>osl_Socket_OptionRcvTimeo</code><br>
720 <li><code>osl_Socket_OptionError</code><br>
721 <li><code>osl_Socket_OptionType</code><br>
723 <li><code>osl_Socket_OptionTcpNoDelay</code><br>
724 Disables the Nagle algorithm for send coalescing. (Do not
725 collect data until a packet is full, instead send immediately.
726 This increases network traffic but might improve latency-times.)
727 1 = disables the algorithm, 0 = keeps it enabled.
729 If not above mentioned otherwise, the options are only valid for
730 level <code>osl_Socket_LevelSocket</code>.
732 @param pBuffer Pointer to a buffer large enough to take the desired
735 @param BufferLen contains the length of the Buffer.
737 @return -1 if an error occurred or else the size of the data copied into
739 @see osl_setSocketOption()
741 SAL_DLLPUBLIC sal_Int32 SAL_CALL
osl_getSocketOption( oslSocket Socket
,
742 oslSocketOptionLevel Level
,
743 oslSocketOption Option
,
745 sal_uInt32 BufferLen
);
747 /** Sets the sockets attributes.
749 @param Socket is the socket to modify.
751 @param Level selects the level for which an option should be changed.
754 <li> osl_sol_socket: Socket Level
755 <li> osl_sol_tcp: Level of Transmission Control Protocol
758 @param Option denotes the option to modify. See osl_setSocketOption() for more
761 @param pBuffer Pointer to a Buffer which contains the attribute-value.
763 @param BufferLen contains the length of the Buffer.
765 @retval True if the option could be changed.
767 SAL_DLLPUBLIC sal_Bool SAL_CALL
osl_setSocketOption( oslSocket Socket
,
768 oslSocketOptionLevel Level
,
769 oslSocketOption Option
,
771 sal_uInt32 BufferLen
);
773 /** Enables/disables non-blocking-mode of the socket.
774 @param Socket Change mode for this socket.
775 @param On sal_True enables non-blocking mode,
776 sal_False</code> disables non-blocking mode.
777 @retval sal_True if mode could be changed.
779 SAL_DLLPUBLIC sal_Bool SAL_CALL
osl_enableNonBlockingMode(
780 oslSocket Socket
, sal_Bool On
);
783 /** Query state of non-blocking-mode of the socket.
784 @param Socket Query mode for this socket.
785 @retval True if non-blocking-mode is enabled.
787 SAL_DLLPUBLIC sal_Bool SAL_CALL
osl_isNonBlockingMode(
791 /** Queries the socket for its type.
792 @param[in] Socket The socket to query.
793 @retval osl_Socket_TypeStream
794 @retval osl_Socket_TypeDgram
795 @retval osl_Socket_TypeRaw
796 @retval osl_Socket_TypeRdm
797 @retval osl_Socket_TypeSeqPacket
798 @retval osl_invalid_SocketType if an error occurred
800 SAL_DLLPUBLIC oslSocketType SAL_CALL
osl_getSocketType(
803 /** returns a string which describes the last socket error.
804 @param[in] Socket The socket to query.
805 @param[out] strError The string that receives the error message.
807 SAL_DLLPUBLIC
void SAL_CALL
osl_getLastSocketErrorDescription(
808 oslSocket Socket
, rtl_uString
**strError
);
810 /** returns a constant describing the last error for the socket system.
811 @retval osl_Socket_E_NONE if no error occurred
812 @retval osl_invalid_SocketError if an unknown (unmapped)
813 error occurred, otherwise an enum describing the error.
815 SAL_DLLPUBLIC oslSocketError SAL_CALL
osl_getLastSocketError(
818 /** Type for the representation of socket sets.
820 typedef struct oslSocketSetImpl
* oslSocketSet
;
822 /** Creates a set of sockets to be used with osl_demultiplexSocketEvents().
823 @return A oslSocketSet or 0 if creation failed.
825 SAL_DLLPUBLIC oslSocketSet SAL_CALL
osl_createSocketSet(void);
827 /** Destroys a oslSocketSet.
829 SAL_DLLPUBLIC
void SAL_CALL
osl_destroySocketSet(oslSocketSet Set
);
831 /** Clears the set from all previously added sockets.
832 @param Set the set to be cleared.
834 SAL_DLLPUBLIC
void SAL_CALL
osl_clearSocketSet(oslSocketSet Set
);
837 /** Adds a socket to the set.
838 @param Set the set were the socket is added.
839 @param Socket the socket to be added.
841 SAL_DLLPUBLIC
void SAL_CALL
osl_addToSocketSet(oslSocketSet Set
, oslSocket Socket
);
843 /** Removes a socket from the set.
844 @param Set the set were the socket is removed from.
845 @param Socket the socket to be removed.
847 SAL_DLLPUBLIC
void SAL_CALL
osl_removeFromSocketSet(oslSocketSet Set
, oslSocket Socket
);
849 /** Checks if socket is in the set.
850 @param Set the set to be checked.
851 @param Socket check if this socket is in the set.
852 @retval sal_True if socket is in the set.
854 SAL_DLLPUBLIC sal_Bool SAL_CALL
osl_isInSocketSet(oslSocketSet Set
, oslSocket Socket
);
856 /** Checks multiple sockets for events.
857 @param IncomingSet Checks the sockets in this set
858 for incoming events (read, accept). If the set is 0,
860 @param OutgoingSet Checks the sockets in this set
861 for outgoing events (write, connect). If the set is 0,
863 @param OutOfBandSet Checks the sockets in this set
864 for out-of-band events. If the set is 0, it is just skipped.
865 @param pTimeout Address of the number of milliseconds to wait for events. If
866 *pTimeout is -1, the call will block until an event or an error
868 @return -1 on errors, otherwise the number of sockets with
869 pending events. In case of timeout, the number might be 0.
871 SAL_DLLPUBLIC sal_Int32 SAL_CALL
osl_demultiplexSocketEvents(oslSocketSet IncomingSet
,
872 oslSocketSet OutgoingSet
,
873 oslSocketSet OutOfBandSet
,
874 const TimeValue
* pTimeout
);
876 /** Closes the socket terminating any ongoing dataflow.
877 @param[in] Socket The socket to close.
879 SAL_DLLPUBLIC
void SAL_CALL
osl_closeSocket(oslSocket Socket
);
882 /** Retrieves n bytes from the stream and copies them into pBuffer.
883 The function avoids incomplete reads due to packet boundaries.
884 @param[in] Socket The socket to read from.
885 @param[out] pBuffer receives the read data.
886 @param[out] nSize the number of bytes to read. pBuffer must be large enough
888 @return the number of read bytes. The number will only be smaller than
889 n if an exceptional condition (e.g. connection closed) occurs.
891 SAL_DLLPUBLIC sal_Int32 SAL_CALL
osl_readSocket( oslSocket Socket
, void *pBuffer
, sal_Int32 nSize
);
894 /** Writes n bytes from pBuffer to the stream. The method avoids
895 incomplete writes due to packet boundaries.
896 @param[out] Socket The socket to write to.
897 @param[in] pBuffer contains the data to be written.
898 @param[in] nSize the number of bytes to write.
899 @return the number of written bytes. The number will only be smaller than
900 nSize if an exceptional condition (e.g. connection closed) occurs.
902 SAL_DLLPUBLIC sal_Int32 SAL_CALL
osl_writeSocket( oslSocket Socket
, const void *pBuffer
, sal_Int32 nSize
);
904 /**@} end section oslSocket
913 #endif // INCLUDED_OSL_SOCKET_H
915 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */