inline AbortConnection

This commit is contained in:
Brian Carlson 2011-04-14 22:42:35 -05:00
parent af8ebe520c
commit 863a1ba85c

View File

@ -105,7 +105,8 @@ public:
String::Utf8Value conninfo(args[0]->ToString()); String::Utf8Value conninfo(args[0]->ToString());
bool success = self->Connect(*conninfo); bool success = self->Connect(*conninfo);
if(!success) { if(!success) {
self -> AbortConnection(); self -> EmitLastError();
self -> DestroyConnection();
} }
return Undefined(); return Undefined();
@ -282,13 +283,6 @@ protected:
} }
} }
//aborts connection and returns connection error message
void AbortConnection()
{
EmitLastError();
DestroyConnection();
}
//safely destroys the connection at most 1 time //safely destroys the connection at most 1 time
void DestroyConnection() void DestroyConnection()
{ {