/* * By Dave Makower * Copyright © 1996 by Pencom Web Works, a business unit of Pencom Systems, Inc. * Send inquiries to */ public interface ChatCodes { // Codes for Client messages final static int _CLOSE_CONNECTION = -1; final static int _NORMAL_MESSAGE = 100; final static int _OPEN_CONNECTION = 101; // not needed? final static int _SET_USER_NAME = 103; final static int _REQUEST_USER_LIST = 104; // Codes for Server messages final static int _ADD_NEW_USER = 200; final static int _REMOVE_USER = 201; final static int _USER_LIST = 202; }