21 #ifndef STREAM_SERVER_H 22 #define STREAM_SERVER_H 24 #include "StreamWriter.h" 25 #include "Utils/Pimpl.h" 39 void sig_new_connection(
const QString& ip);
40 void sig_connection_closed(
const QString& ip);
41 void sig_listening(
bool);
47 void active_changed();
51 void dismiss(
int idx);
53 void disconnect(StreamWriterPtr sw);
54 void disconnect_all();
61 void accept_client(QTcpSocket* socket,
const QString& ip);
62 void reject_client(QTcpSocket* socket,
const QString& ip);
65 void server_destroyed();
67 void new_client_request();
69 void new_connection(
const QString& ip);
The StreamWriter class. This class is the interface between StreamDataSender and StreamServer....
Definition: StreamWriter.h:39
The StreamServer class. This class is listening for new connections and holds and administrates curre...
Definition: StreamServer.h:32