stability

This commit is contained in:
Matej Sekoranja
2011-02-10 17:05:34 +01:00
parent d95879102a
commit c87ff047ca
16 changed files with 178 additions and 67 deletions

View File

@@ -53,6 +53,8 @@ public:
virtual Configuration* getConfiguration() {
return _conf;
}
virtual void acquire() {}
virtual void release() {}
private:
TransportRegistry* _tr;
@@ -92,6 +94,8 @@ public:
virtual void transportClosed() {
errlogSevPrintf(errlogInfo, "closed");
}
virtual void acquire() {};
virtual void release() {};
};
class DummyTransportSender : public TransportSender {