RTP Audio System  2.0.0
unixaddress.h
Go to the documentation of this file.
00001 /*
00002  *  $Id: unixaddress.h 1259 2011-12-17 13:26:09Z dreibh $
00003  *
00004  * SocketAPI implementation for the sctplib.
00005  * Copyright (C) 1999-2012 by Thomas Dreibholz
00006  *
00007  * Realized in co-operation between
00008  * - Siemens AG
00009  * - University of Essen, Institute of Computer Networking Technology
00010  * - University of Applied Sciences, Muenster
00011  *
00012  * Acknowledgement
00013  * This work was partially funded by the Bundesministerium fuer Bildung und
00014  * Forschung (BMBF) of the Federal Republic of Germany (Foerderkennzeichen 01AK045).
00015  * The authors alone are responsible for the contents.
00016  *
00017  * This program is free software: you can redistribute it and/or modify
00018  * it under the terms of the GNU General Public License as published by
00019  * the Free Software Foundation, either version 3 of the License, or
00020  * (at your option) any later version.
00021 
00022  * This program is distributed in the hope that it will be useful,
00023  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00024  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00025  * GNU General Public License for more details.
00026  *
00027  * You should have received a copy of the GNU General Public License
00028  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
00029  *
00030  * Contact: discussion@sctp.de
00031  *          dreibh@iem.uni-due.de
00032  *          tuexen@fh-muenster.de
00033  *
00034  * Purpose: Unix address implementation
00035  *
00036  */
00037 
00038 
00039 #ifndef UNIXADDRESS_H
00040 #define UNIXADDRESS_H
00041 
00042 
00043 #include "tdsystem.h"
00044 #include "strings.h"
00045 #include "socketaddress.h"
00046 
00047 
00048 #include <sys/socket.h>
00049 #include <sys/un.h>
00050 
00051 
00052 
00060 class UnixAddress : virtual public SocketAddress
00061 {
00062    // ====== Constructors/Destructor ========================================
00063    public:
00067    UnixAddress();
00068 
00074    UnixAddress(const UnixAddress& address);
00075 
00082    UnixAddress(const String& name);
00083 
00090    UnixAddress(const sockaddr* address, const cardinal length);
00091 
00095    ~UnixAddress();
00096 
00097 
00098    // ====== Initialization =================================================
00102    void reset();
00103 
00109    SocketAddress* duplicate() const;
00110 
00114    void init(const UnixAddress& address);
00115 
00119    void init(const String& name);
00120 
00124    inline UnixAddress& operator=(const UnixAddress& source);
00125 
00126 
00127    // ====== Address functions ==============================================
00133    bool isValid() const;
00134 
00140    integer getFamily() const;
00141 
00147    String getAddressString(const cardinal format = PF_Default) const;
00148 
00154    inline bool isNull() const;
00155 
00156 
00157    // ====== getPort() dummy ================================================
00163    card16 getPort() const;
00164 
00170    void setPort(const card16 port);
00171 
00172 
00173    // ====== Get/set system sockaddr structure ==============================
00179    cardinal getSystemAddress(sockaddr*       buffer,
00180                              const socklen_t length,
00181                              const cardinal  type) const;
00182 
00188    bool setSystemAddress(const sockaddr* address, const socklen_t length);
00189 
00190 
00191     // ====== Comparision operators =========================================
00195    int operator==(const UnixAddress& address) const;
00196 
00200    inline int operator!=(const UnixAddress& address) const;
00201 
00205    int operator<(const UnixAddress& address) const;
00206 
00210    inline int operator<=(const UnixAddress& address) const;
00211 
00215    int operator>(const UnixAddress& address) const;
00216 
00220    inline int operator>=(const UnixAddress& address) const;
00221 
00222 
00223    // ====== Private data ===================================================
00224    private:
00225    static const cardinal MaxNameLength = 108 - 1;
00226 
00227    char Name[MaxNameLength + 1];
00228 };
00229 
00230 
00231 #include "unixaddress.icc"
00232 
00233 
00234 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines