comparison src/main/java/jp/ac/u_ryukyu/treevnc/TreeRFBProto.java @ 511:519d6f94edcc

remove broadcast queue
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 20 Feb 2019 15:30:25 +0900
parents 89f1f7e41838
children b97fdcd337fe
comparison
equal deleted inserted replaced
510:89f1f7e41838 511:519d6f94edcc
34 protected final static int FramebufferUpdate = 0; 34 protected final static int FramebufferUpdate = 0;
35 protected ProtocolContext context; 35 protected ProtocolContext context;
36 private int clients = 0; 36 private int clients = 0;
37 37
38 public MulticastQueue<LinkedList<ByteBuffer>> multicastqueue = new MulticastQueue<LinkedList<ByteBuffer>>(); 38 public MulticastQueue<LinkedList<ByteBuffer>> multicastqueue = new MulticastQueue<LinkedList<ByteBuffer>>();
39 public static MulticastQueue<LinkedList<ByteBuffer>> broadcastqueue = new MulticastQueue<LinkedList<ByteBuffer>>(); // singleton
40 public FindRoot findRoot; 39 public FindRoot findRoot;
41 public int acceptPort = 0; 40 public int acceptPort = 0;
42 private String myAddress; 41 private String myAddress;
43 private long counter = 0; // packet serial number 42 private long counter = 0; // packet serial number
44 public ServerSocket servSock; 43 public ServerSocket servSock;