From 60c589be4ddd022bdd58c260d44b58247f5e47ac Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Tue, 15 Mar 2005 22:39:19 +0000 Subject: [PATCH] Arg. I can't change this or no one will be able to get the "failed" response telling them to upgrade. Note to self, do the thing where the server immediately writes the version number to the auth stream so that we don't have to worry about this sort of legacy crap. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3410 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/presents/net/AuthResponseData.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/presents/net/AuthResponseData.java b/src/java/com/threerings/presents/net/AuthResponseData.java index f040a0aad..9cae2a5ca 100644 --- a/src/java/com/threerings/presents/net/AuthResponseData.java +++ b/src/java/com/threerings/presents/net/AuthResponseData.java @@ -21,7 +21,7 @@ package com.threerings.presents.net; -import com.threerings.io.SimpleStreamableObject; +import com.threerings.presents.dobj.DObject; /** * An AuthResponseData object is communicated back to the @@ -29,7 +29,7 @@ import com.threerings.io.SimpleStreamableObject; * of authentication success or failure along with bootstrap information * for the client. */ -public class AuthResponseData extends SimpleStreamableObject +public class AuthResponseData extends DObject { /** The constant used to indicate a successful authentication. */ public static final String SUCCESS = "success";