summaryrefslogtreecommitdiffstats
path: root/src/shared/settings.h
blob: 2713693ad6f08e11f6421effd4a48062b28e9345 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _SETTINGS_H_
#define _SETTINGS_H_

#include <QString>

#define CLIENT_PORT 5194
static const QString CLIENT_PORT_STR(QString::number(CLIENT_PORT));
static const QByteArray CLIENT_PORT_ARRAY(QString::number(CLIENT_PORT).toUtf8());

#define SERVICE_DISCOVERY_PORT 3492

#define PING_TIMEOUT_MS 30000

#endif