]> git.llucax.com Git - software/posixx.git/blobdiff - src/linux/tipc.hpp
Update Makeit.mak
[software/posixx.git] / src / linux / tipc.hpp
index cb33335ccc8cb200afa52fb135b67a289511a306..0fc49fbad9b631d3e3fbd7374362d82990317c4b 100644 (file)
@@ -315,6 +315,26 @@ struct subscr_event: tipc_event
 
 };
 
 
 };
 
+/// Type of TIPC address
+enum type_t
+{
+       ID = TIPC_ADDR_ID,           ///< Port ID
+       NAME = TIPC_ADDR_NAME,       ///< Port name
+       NAMESEQ = TIPC_ADDR_NAMESEQ  ///< Name sequence or multicast
+};
+
+/**
+ * Bind scope.
+ *
+ * @see TIPC documentation: 2.1.2 bind
+ */
+enum scope_t
+{
+       ZONE = TIPC_ZONE_SCOPE,       ///< Zone scope.
+       CLUSTER = TIPC_CLUSTER_SCOPE, ///< Cluster scope.
+       NODE = TIPC_NODE_SCOPE        ///< Node scope.
+};
+
 /**
  * TIPC socket address (name).
  *
 /**
  * TIPC socket address (name).
  *
@@ -329,26 +349,6 @@ struct subscr_event: tipc_event
 struct sockaddr: sockaddr_tipc
 {
 
 struct sockaddr: sockaddr_tipc
 {
 
-       /// Type of TIPC address
-       enum type_t
-       {
-               ID = TIPC_ADDR_ID, ///< Port ID
-               NAME = TIPC_ADDR_NAME, ///< Port name
-               NAMESEQ = TIPC_ADDR_NAMESEQ ///< Name sequence or multicast
-       };
-
-       /**
-        * Bind scope.
-        *
-        * @see TIPC documentation: 2.1.2 bind
-        */
-       enum scope_t
-       {
-               ZONE = TIPC_ZONE_SCOPE,       ///< Zone scope.
-               CLUSTER = TIPC_CLUSTER_SCOPE, ///< Cluster scope.
-               NODE = TIPC_NODE_SCOPE        ///< Node scope.
-       };
-
        /// Constructor.
        sockaddr() throw ();
 
        /// Constructor.
        sockaddr() throw ();
 
@@ -649,7 +649,7 @@ inline
 posixx::linux::tipc::sockaddr::sockaddr(portid port, scope_t s) throw ()
 {
        family = AF_TIPC;
 posixx::linux::tipc::sockaddr::sockaddr(portid port, scope_t s) throw ()
 {
        family = AF_TIPC;
-       addrtype = TIPC_ADDR_ID;
+       addrtype = ID;
        scope = s;
        addr.id = port;
 }
        scope = s;
        addr.id = port;
 }
@@ -659,7 +659,7 @@ posixx::linux::tipc::sockaddr::sockaddr(name name, scope_t s, tipc::addr d)
                throw ()
 {
        family = AF_TIPC;
                throw ()
 {
        family = AF_TIPC;
-       addrtype = TIPC_ADDR_NAME;
+       addrtype = NAME;
        scope = s;
        addr.name.name = name;
        addr.name.domain = d;
        scope = s;
        addr.name.name = name;
        addr.name.domain = d;
@@ -669,13 +669,13 @@ inline
 posixx::linux::tipc::sockaddr::sockaddr(nameseq nameseq, scope_t s) throw ()
 {
        family = AF_TIPC;
 posixx::linux::tipc::sockaddr::sockaddr(nameseq nameseq, scope_t s) throw ()
 {
        family = AF_TIPC;
-       addrtype = TIPC_ADDR_NAMESEQ;
+       addrtype = NAMESEQ;
        scope = s;
        addr.nameseq = nameseq;
 }
 
 inline
        scope = s;
        addr.nameseq = nameseq;
 }
 
 inline
-posixx::linux::tipc::sockaddr::type_t posixx::linux::tipc::sockaddr::type()
+posixx::linux::tipc::type_t posixx::linux::tipc::sockaddr::type()
                const throw ()
 {
        return static_cast< type_t >(addrtype);
                const throw ()
 {
        return static_cast< type_t >(addrtype);