summaryrefslogtreecommitdiff
path: root/x11/ipc
Side-by-side diff
Diffstat (limited to 'x11/ipc') (more/less context) (ignore whitespace changes)
-rw-r--r--x11/ipc/client/ocopclient.cpp8
-rw-r--r--x11/ipc/server/ocopserver.cpp38
2 files changed, 23 insertions, 23 deletions
diff --git a/x11/ipc/client/ocopclient.cpp b/x11/ipc/client/ocopclient.cpp
index 91827e7..f59fa41 100644
--- a/x11/ipc/client/ocopclient.cpp
+++ b/x11/ipc/client/ocopclient.cpp
@@ -100,5 +100,5 @@ OCOPPacket OCOPClient::packet() const{
read(m_socket, &head, sizeof(head) );
if ( head.magic == 47 ) {
- qWarning("Client:Magic Match");
+// qWarning("Client:Magic Match");
chan = QCString( head.chlen+1);
func = QCString( head.funclen+1 );
@@ -107,5 +107,5 @@ OCOPPacket OCOPClient::packet() const{
read(m_socket, func.data(), head.funclen );
read(m_socket, ar.data(), head.datalen );
- qWarning("Client:%d %s",head.chlen,chan.data() );
+// qWarning("Client:%d %s",head.chlen,chan.data() );
}
OCOPPacket pack(head.type, chan, func, ar );
@@ -118,5 +118,5 @@ OCOPPacket OCOPClient::packet() const{
*/
bool OCOPClient::isRegistered( const QCString& chan ) const{
- qWarning("OCopClient::isRegistered %s", chan.data() );
+// qWarning("OCopClient::isRegistered %s", chan.data() );
/* should I disconnect the socket notfier? */
OCOPPacket packe(OCOPPacket::IsRegistered, chan );
@@ -138,5 +138,5 @@ bool OCOPClient::isRegistered( const QCString& chan ) const{
};
void OCOPClient::send( const QCString& chan, const QCString& fu, const QByteArray& arr ) {
- qWarning("ClientSending %s %s", chan.data(), fu.data() );
+// qWarning("ClientSending %s %s", chan.data(), fu.data() );
OCOPPacket pack(OCOPPacket::Call, chan, fu, arr );
call( pack );
diff --git a/x11/ipc/server/ocopserver.cpp b/x11/ipc/server/ocopserver.cpp
index ee5ea18..992cb8c 100644
--- a/x11/ipc/server/ocopserver.cpp
+++ b/x11/ipc/server/ocopserver.cpp
@@ -32,5 +32,5 @@ void OCopServer::init() {
* to get EPIPE on reads ;)
*/
- qWarning("SIGPIPE to be ignored");
+// qWarning("SIGPIPE to be ignored");
signal(SIGPIPE, SIG_IGN );
@@ -122,5 +122,5 @@ void OCopServer::newOnServer() {
* and a OCOPClient
*/
- qWarning("Heureka new connection %d", fd );
+// qWarning("Heureka new connection %d", fd );
@@ -195,6 +195,6 @@ void OCopServer::newOnClient( int fd ) {
}else{
- qWarning("magic does not match");
- qWarning("magic %d", head.magic );
+// qWarning("magic does not match");
+// qWarning("magic %d", head.magic );
}
}
@@ -210,5 +210,5 @@ void OCopServer::registerClient( int fd ) {
client.notify = notify;
m_clients.insert( client.fd, client );
- qWarning("clients are up to %d", m_clients.count() );
+// qWarning("clients are up to %d", m_clients.count() );
};
void OCopServer::deregisterClient(int fd ) {
@@ -230,5 +230,5 @@ void OCopServer::deregisterClient(int fd ) {
* The channel contains this fd
*/
- qWarning("Channel %s %d", it2.key().data(), it2.data().count() );
+// qWarning("Channel %s %d", it2.key().data(), it2.data().count() );
if ( it2.data().contains( fd ) ) {
qWarning("contains");
@@ -239,5 +239,5 @@ void OCopServer::deregisterClient(int fd ) {
*/
if ( array.count() == 1 || array.count() == 0) {
- qWarning("Invalidate!");
+// qWarning("Invalidate!");
/* is the list now invalidatet? */
m_channels.remove( it2 );
@@ -251,5 +251,5 @@ void OCopServer::deregisterClient(int fd ) {
goto repeatIt;
}else{
- qWarning("removing count %d %d",fd, array.count() );
+// qWarning("removing count %d %d",fd, array.count() );
QValueList<int>::Iterator it3 = array.find( fd );
it3 = array.remove( it3 );
@@ -264,6 +264,6 @@ void OCopServer::deregisterClient(int fd ) {
close(fd );
}
- qWarning("clients are now at %d", m_clients.count() );
-};
+// qWarning("clients are now at %d", m_clients.count() );
+}
/**
* this function will evaluate
@@ -271,5 +271,5 @@ void OCopServer::deregisterClient(int fd ) {
*/
void OCopServer::dispatch( const OCOPPacket& packet, int sourceFD ) {
- qWarning("packet.type() == %d", packet.type() );
+// qWarning("packet.type() == %d", packet.type() );
switch( packet.type() ) {
case OCOPPacket::Register:
@@ -301,5 +301,5 @@ void OCopServer::dispatch( const OCOPPacket& packet, int sourceFD ) {
break;
case OCOPPacket::IsRegistered:
- qWarning("Server:IsRegistered %s", packet.channel().data() );
+// qWarning("Server:IsRegistered %s", packet.channel().data() );
isRegistered( packet.channel(), sourceFD );
break;
@@ -334,5 +334,5 @@ void OCopServer::addChannel( const QCString& channel,
QValueList<int> list = it.data();
list.append( fd );
- qWarning("count is now in addChannel %d %s", list.count(), channel.data() );
+ qWarning("Server:count is now in addChannel %d %s", list.count(), channel.data() );
it = m_channels.replace( channel, list );
}else {
@@ -344,5 +344,5 @@ void OCopServer::addChannel( const QCString& channel,
void OCopServer::delChannel( const QCString& channel,
int fd ) {
- qWarning("remove %s, %d", channel.data(), fd );
+// qWarning("remove %s, %d", channel.data(), fd );
if (!m_channels.contains( channel ) )
return;
@@ -362,9 +362,9 @@ void OCopServer::delChannel( const QCString& channel,
m_channels.replace( str, ints );
}
- qWarning(" channel count is now %d", ints.count() );
+// qWarning(" channel count is now %d", ints.count() );
}
}
void OCopServer::isRegistered( const QCString& channel, int fd) {
- qWarning("Server:isRegistered %s", channel.data() );
+// qWarning("Server:isRegistered %s", channel.data() );
OCOPHead head;
QCString func(2);
@@ -380,8 +380,8 @@ void OCopServer::isRegistered( const QCString& channel, int fd) {
//is registered
func[0] = 1;
- qWarning("Server:Channel is Registered %d", head.chlen);
+// qWarning("Server:Channel is Registered %d", head.chlen);
}else{
func[0] = 0;
- qWarning("Server:Channel is NotRegistered");
+// qWarning("Server:Channel is NotRegistered");
}
@@ -404,5 +404,5 @@ void OCopServer::call( const OCOPPacket& p, int ) {
OCOPHead head = p.head();
for (it = cli.begin(); it != cli.end(); ++it ) {
- qWarning("Server:calling %d %s %s", (*it), p.channel().data(), p.header().data() );
+// qWarning("Server:calling %d %s %s", (*it), p.channel().data(), p.header().data() );
write( (*it), &head, sizeof(head ) );
/* expl. shared! */