summaryrefslogblamecommitdiffstats
path: root/src/shared/settings.h
blob: 7b1fc3c526c2f4e8a8214c82d9a4aba638351f30 (plain) (tree)
1
2
3
4
5
6
7
8
9


                    
                  
                      
 


                                                                                 
                                                                                                          




                                   
#ifndef _SETTINGS_H_
#define _SETTINGS_H_

#include <QString>
#include <QStringList>

#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());
static const QStringList PREFERRED_STYLES(QStringList() << "GTK+" << "Motif" << "Plastique" << "Windows");
#define SERVICE_DISCOVERY_PORT 3492

#define PING_TIMEOUT_MS 30000

#endif