## ## SA - OSSP Socket Abstraction Library ## Copyright (c) 2001 Ralf S. Engelschall ## Copyright (c) 2001 The OSSP Project ## Copyright (c) 2001 Cable & Wireless Deutschland ## ## This file is part of OSSP SA, a socket abstraction library which ## can be found at http://www.ossp.org/pkg/sa/. ## ## Permission to use, copy, modify, and distribute this software for ## any purpose with or without fee is hereby granted, provided that ## the above copyright notice and this permission notice appear in all ## copies. ## ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ## SUCH DAMAGE. ## ## sa.pod: socket abstraction library manual page ## =pod =head1 NAME B - Socket Abstraction Library =head1 SYNOPSIS =over 4 =item B: sa_rc_t, sa_addr_t, sa_t. =item B
: sa_addr_create, sa_addr_destroy. =item B
: sa_addr_u2a, sa_addr_s2a, sa_addr_a2u, sa_addr_a2s. =item B: sa_create, sa_destroy. =item B: sa_timeout, sa_buffers. =item B: sa_bind, sa_connect, sa_listen, sa_accept, sa_getremote, sa_getlocal, sa_getfd, sa_shutdown. =item B: sa_read, sa_readln, sa_write, sa_writef, sa_flush. =item B: sa_recv, sa_send. =back =head1 DESCRIPTION B is an abstraction library for the Unix socket interface featuring stream and datagram oriented communication over Unix Domain and Internet Domain sockets. It provides the following key features: =over 4 =item B
Most of the uglyness in the Unix socket API is the necessarity to have to deal with the various address structures (C) which exist because of both the different communication types and addressing schemes. B fully hides this by providing an abstract and opaque address type (C) together with four utility functions which allow one to convert from the traditional C or URI specification to the C and vice versa. =item B Some other subtle details in the socket API make the life hard in practice: C and C. These two types originally were (and on some platforms still are) plain integers or unsigned integers while POSIX later introduced own types for them. This is nasty, because for full backward compatibility and type-correct API usage, every application has to check whether the newer types exists and if not provide own definitions which map to the still actually used integer type on the underlying platform. B hides all this in its API. =item B Each I/O function in B is aware of a central timeout (set by sa_timeout(3)), i.e., all I/O operations return C and C set to C if this timeout expired before the operation was able to succeed. This allows one to easily program less-blocking network services. =item B If B is used for stream communication, internally all I/O operations can be performed through input and/or output buffers (set by sa_buffers(3)) for achieving higher I/O performance by doing I/O operations on larger aggregated messages. =item B If B is used for stream communication, for convinience reasons line-oriented reading (sa_readln(3)) and formated writing (sa_writef(3)) is provided, modelled after STDIO's fgets(3) and fprintf(3). =back =head1 DATA TYPES B uses three data types in its API: =over 4 =item B (Return Code Type) This is an exported enumerated integer type with the following possible values: C (everything ok, operation succeeded); C (invalid argument(s) passed to function); C (function used in wrong context); C (out of memory); C (end of file/socket in communication); C (operating system error; errno contains details); C (any other internal error). =item B (Socket Address Abstraction Type) This is an opaque type representing a socket address. Only pointers to this abstract type are used in the API. =item B (Socket Abstraction Type) This is an opaque type representing a socket. Only pointers to this abstract type are used in the API. =back =head1 FUNCTIONS =head2 Address Object Operations =over 4 =item sa_rc_t B(sa_addr_t **I); =item sa_rc_t B(sa_addr_t *I); =back =head2 Address Operations =over 4 =item sa_rc_t B(sa_addr_t *I, const char *I, ...); =item sa_rc_t B(sa_addr_t *I, const struct sockaddr *I, socklen_t I); =item sa_rc_t B(sa_addr_t *I, char **I); =item sa_rc_t B(sa_addr_t *I, struct sockaddr **I, socklen_t *I); =back =head2 Socket Object Operations =over 4 =item sa_rc_t B(sa_t **I); =item sa_rc_t B(sa_t *I); =back =head2 Socket Parameter Operations =over 4 =item sa_rc_t B(sa_t *I, sa_type_t I); =item sa_rc_t B(sa_t *I, long I, long I); =item sa_rc_t B(sa_t *I, size_t I, size_t I); =item sa_rc_t B(sa_t *I, int I, void *I, socklen_t *I); =item sa_rc_t B(sa_t *I, int I, const void *I, socklen_t I); =back =head2 Socket Connection Operations =over 4 =item sa_rc_t B(sa_t *I, sa_addr_t *I); =item sa_rc_t B(sa_t *I, sa_addr_t *I); =item sa_rc_t B(sa_t *I, int I); =item sa_rc_t B(sa_t *I, sa_addr_t **I, sa_t **I); =item sa_rc_t B(sa_t *I, sa_addr_t **I); =item sa_rc_t B(sa_t *I, sa_addr_t **I); =item sa_rc_t B(sa_t *I, int *I); =item sa_rc_t B(sa_t *I, char *I); =back =head2 Socket Input/Output Operations (Stream Communication) =over 4 =item sa_rc_t B(sa_t *I, char *I, size_t I, size_t *I); =item sa_rc_t B(sa_t *I, char *I, size_t I, size_t *I); =item sa_rc_t B(sa_t *I, const char *I, size_t I, size_t *I); =item sa_rc_t B(sa_t *I, const char *I, ...); =item sa_rc_t B(sa_t *I); =back =head2 Socket Input/Output Operations (Stream Communication) =over 4 =item sa_rc_t B(sa_t *I, char *I, size_t I, size_t *I, sa_addr_t **I); =item sa_rc_t B(sa_t *I, const char *I, size_t I, size_t *I, sa_addr_t *I); =back =head1 HISTORY B was invented in August 2001 by Ralf S. Engelschall for use inside the OSSP project. Its creation was prompted by the requirement to implement an SMTP logging channel for B (logging library). Its initial code was derived from a predecessor sub-library originally written for socket address abstraction inside B. =head1 AUTHORS Ralf S. Engelschall rse@engelschall.com www.engelschall.com =cut