]> WPIA git - cassiopeia.git/blobdiff - src/io/record.h
upd: various logging updates
[cassiopeia.git] / src / io / record.h
index 88576651ea574c25c2c7f2ebf83ad44e8ec6d5f1..28a9b1e710da79be26bbff034207328bf7fd86aa 100644 (file)
@@ -59,10 +59,10 @@ public:
     template <class T>
     static void read( std::string::const_iterator& it, T& val ) {
         union typeConversion {
-            char buf[sizeof(T)];
+            char buf[sizeof( T )];
             T value;
 
-            typeConversion(const T& v) : value(v) {}
+            typeConversion( const T& v ) : value( v ) {}
         };
 
         typeConversion data( 0 );
@@ -104,6 +104,6 @@ public:
 
 };
 
-std::string parseCommand( RecordHeader& head, const std::string& input, std::shared_ptr<std::ostream> log );
+std::string parseCommand( RecordHeader& head, const std::string& input );
 
-void sendCommand( RecordHeader& head, const std::string& data, std::shared_ptr<OpensslBIO> bio, std::shared_ptr<std::ostream> log );
+void sendCommand( RecordHeader& head, const std::string& data, std::shared_ptr<OpensslBIO> bio );