Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.UseCircuitCodePacket


  /// </summary>
  /// <param name="waitForAck">Should we block until ack for this packet is recieved</param>
  public void UseCircuitCode(boolean waitForAck)
  {
    // Send the UseCircuitCode packet to initiate the connection
    UseCircuitCodePacket use = new UseCircuitCodePacket();
    use.CircuitCode.Code = Network.getCircuitCode();
    use.CircuitCode.ID = Client.self.getAgentID();
    use.CircuitCode.SessionID = Client.self.getSessionID();
    JLogger.info("Got Circuit Code: " + Network.getCircuitCode());
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.UseCircuitCodePacket

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.