Roll it all back.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3432 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2005-03-28 19:33:28 +00:00
parent 36af272a63
commit d58d1001ac
7 changed files with 44 additions and 118 deletions
@@ -35,15 +35,11 @@ public class DummyAuthenticator extends Authenticator
/**
* Accept all authentication requests.
*/
public void authenticateConnection (final AuthingConnection conn)
public void authenticateConnection (AuthingConnection conn)
{
Log.info("Accepting request: " + conn.getAuthRequest());
PresentsServer.omgr.postRunnable(new Runnable() {
public void run () {
AuthResponseData rdata = new AuthResponseData();
rdata.code = AuthResponseData.SUCCESS;
connectionWasAuthenticated(conn, new AuthResponse(rdata));
}
});
AuthResponseData rdata = new AuthResponseData();
rdata.code = AuthResponseData.SUCCESS;
connectionWasAuthenticated(conn, new AuthResponse(rdata));
}
}