X-Git-Url: https://git.syn-net.org/debian/?p=anytun.git;a=blobdiff_plain;f=src%2FsyncQueue.cpp;h=8ddc7437f890a7e71031bff508df0c9a449411d1;hp=270bb26e25afb92ea712b88092a1bc7b8ea779c5;hb=ef0cacf2508418915d3f64b04003be3c13fed3cc;hpb=ece844834d2cecc028ce81ca283f5d441088580e diff --git a/src/syncQueue.cpp b/src/syncQueue.cpp index 270bb26..8ddc743 100644 --- a/src/syncQueue.cpp +++ b/src/syncQueue.cpp @@ -11,7 +11,7 @@ * tunneling and relaying of packets of any protocol. * * - * Copyright (C) 2007-2009 Othmar Gsenger, Erwin Nindl, + * Copyright (C) 2007-2009 Othmar Gsenger, Erwin Nindl, * Christian Pointner * * This file is part of Anytun. @@ -52,39 +52,41 @@ SyncQueue& SyncQueue::instance() { Lock lock(instMutex); static instanceCleaner c; - if(!inst) + if(!inst) { inst = new SyncQueue(); + } return *inst; } -void SyncQueue::push(const SyncCommand & scom ) +void SyncQueue::push(const SyncCommand& scom) { - std::ostringstream sout; - boost::archive::text_oarchive oa(sout); - oa << scom; + std::ostringstream sout; + boost::archive::text_oarchive oa(sout); + oa << scom; std::stringstream lengthout; lengthout << std::setw(5) << std::setfill('0') << sout.str().size()<< ' '; - push(lengthout.str()+sout.str()); + push(lengthout.str()+sout.str()); } -void SyncQueue::push(const std::string & str ) +void SyncQueue::push(const std::string& str) { Lock lock(mutex_); -// std::cout << "Debug" << std:endl; - if( syncServer_) - syncServer_->send(str); + // std::cout << "Debug" << std:endl; + if(syncServer_) { + syncServer_->send(str); + } } -void SyncQueue::setSyncServerPtr(SyncServer * ptr) +void SyncQueue::setSyncServerPtr(SyncServer* ptr) { Lock lock(mutex_); - syncServer_=ptr; + syncServer_=ptr; } bool SyncQueue::empty() { Lock lock(mutex_); - return 1; + return 1; }