Pool Video Switch v2
Software video switch for distributed remote display in a lecture environment
network.h
Go to the documentation of this file.
1 /*
2  * network.h
3  *
4  * Created on: 28.01.2013
5  * Author: sr
6  */
7 
8 #ifndef NETWORK_H_
9 #define NETWORK_H_
10 
11 #include <QString>
12 #include <QHostAddress>
13 
14 namespace Network
15 {
16 
17 
19 QString interfaceAddressesToString(const QList<QHostAddress>& list);
20 bool isAddressInList(const QString& list, const QString& address);
21 
22 
23 }
24 
25 #endif /* NETWORK_H_ */
bool isAddressInList(const QString &list, const QString &address)
Definition: network.cpp:42
QString interfaceAddressesToString()
Returns list of all addresses assigned to the interfaces of this machine.
Definition: network.cpp:22