ISAAC
Overview :: Library Doc :: Server Doc :: JSON Commands

In Situ Animation of Accelerated Computations

NetworkInterfaces.hpp
Go to the documentation of this file.
1 /* This file is part of ISAAC.
2  *
3  * ISAAC is free software: you can redistribute it and/or modify
4  * it under the terms of the GNU Lesser General Public License as
5  * published by the Free Software Foundation, either version 3 of the
6  * License, or (at your option) any later version.
7  *
8  * ISAAC is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public
14  * License along with ISAAC. If not, see <www.gnu.org/licenses/>. */
15 
16 #ifndef __NETWORKINTERFACES
17 #define __NETWORKINTERFACES
18 
19 #include <sys/types.h>
20 #include <ifaddrs.h>
21 #include <string>
22 #include <netinet/in.h>
23 
25 {
26  public:
27  static void bindInterface(in_addr_t &s_addr,std::string interface, bool ipv6 = false);
28  static struct ifaddrs * ifaddr;
29  private:
30  static void initIfaddr();
31 };
32 #endif
static struct ifaddrs * ifaddr
static void bindInterface(in_addr_t &s_addr, std::string interface, bool ipv6=false)