Browse Source

[master] put doxy back in .cc for #1186 to handle

Jelte Jansen 13 years ago
parent
commit
1f77f60db4
2 changed files with 11 additions and 12 deletions
  1. 11 0
      src/bin/dhcp6/iface_mgr.cc
  2. 0 12
      src/bin/dhcp6/iface_mgr.h

+ 11 - 0
src/bin/dhcp6/iface_mgr.cc

@@ -226,6 +226,17 @@ IfaceMgr::getIface(const std::string& ifname) {
 }
 
 
+/**
+ * Opens UDP/IPv6 socket and binds it to specific address, interface and port.
+ *
+ * @param ifname name of the interface
+ * @param addr address to be bound.
+ * @param port UDP port.
+ * @param mcast Should multicast address also be bound?
+ *
+ * @return socket descriptor, if socket creation, binding and multicast
+ * group join were all successful. -1 otherwise.
+ */
 int
 IfaceMgr::openSocket(const std::string& ifname,
                      const IOAddress& addr,

+ 0 - 12
src/bin/dhcp6/iface_mgr.h

@@ -70,18 +70,6 @@ namespace isc {
 
         void detectIfaces();
 
-        /**
-         * Opens UDP/IPv6 socket and binds it to specific address, interface
-         * and port.
-         *
-         * @param ifname name of the interface
-         * @param addr address to be bound.
-         * @param port UDP port.
-         * @param mcast Should multicast address also be bound?
-         *
-         * @return socket descriptor, if socket creation, binding and multicast
-         * group join were all successful. -1 otherwise.
-         */
         int openSocket(const std::string& ifname,
                        const isc::asiolink::IOAddress& addr,
                        int port);