From 31f1a0af16d76a16b3a53e0098e185fcfaa2ffae Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Tue, 13 May 2008 23:21:34 +0000 Subject: [PATCH] Added missing field. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5091 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/presents/net/BootstrapData.as | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/as/com/threerings/presents/net/BootstrapData.as b/src/as/com/threerings/presents/net/BootstrapData.as index 8f50adb54..38d951ecb 100644 --- a/src/as/com/threerings/presents/net/BootstrapData.as +++ b/src/as/com/threerings/presents/net/BootstrapData.as @@ -37,6 +37,9 @@ import com.threerings.util.StreamableArrayList; public class BootstrapData implements Streamable { + /** The unique id of the client's connection. */ + public var connectionId :int; + /** The oid of this client's associated distributed object. */ public var clientOid :int; @@ -53,6 +56,7 @@ public class BootstrapData // documentation inherited from interface Streamable public function readObject (ins :ObjectInputStream) :void { + connectionId = ins.readInt(); clientOid = ins.readInt(); services = (ins.readObject() as StreamableArrayList); }