From ddfc1b38d7bb5cc607afc7fadc6374911f5a9e60 Mon Sep 17 00:00:00 2001 From: Markus Grüneis Date: Wed, 17 Feb 2010 21:40:54 +0000 Subject: whitespace only change: unified formatting with "astyle --style=k/r --indent=spaces=2 --unpad-paren --add-brackets --align-pointer=type --keep-one-line-blocks --indent-col1-comments --lineend=linux --suffix=none --recursive" --- src/syncQueue.cpp | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) (limited to 'src/syncQueue.cpp') 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; } -- cgit v1.2.3