comparison app/src/main/java/com/five_ten_sg/connectbot/service/TerminalMonitor.java @ 459:a3239022798d

compile 32 and 64 bit arch, bump version
author Carl Byington <carl@five-ten-sg.com>
date Sun, 28 Apr 2019 17:06:20 -0700
parents 105815cce146
children 4776062555f3
comparison
equal deleted inserted replaced
458:ad275ce23092 459:a3239022798d
39 public static final char MONITOR_CMD_SCREENWATCH = 7; 39 public static final char MONITOR_CMD_SCREENWATCH = 7;
40 public static final char MONITOR_CMD_DEPRESS = 8; 40 public static final char MONITOR_CMD_DEPRESS = 8;
41 public static final char MONITOR_CMD_SHOWURL = 9; 41 public static final char MONITOR_CMD_SHOWURL = 9;
42 public static final char MONITOR_CMD_SWITCHSESSION = 10; 42 public static final char MONITOR_CMD_SWITCHSESSION = 10;
43 public static final char MONITOR_CMD_CURSORREQUEST = 11; 43 public static final char MONITOR_CMD_CURSORREQUEST = 11;
44 public static final char MONITOR_CMD_SAYSTRING = 12;
44 45
45 public static final String[] commands = { 46 public static final String[] commands = {
46 "cmd_init", 47 "cmd_init",
47 "cmd_activate", 48 "cmd_activate",
48 "cmd_keystate", 49 "cmd_keystate",
53 "cmd_screenwatch", 54 "cmd_screenwatch",
54 "cmd_depress", 55 "cmd_depress",
55 "cmd_showurl", 56 "cmd_showurl",
56 "cmd_switchsession", 57 "cmd_switchsession",
57 "cmd_cursorrequest" 58 "cmd_cursorrequest"
59 "cmd_saystring"
58 }; 60 };
59 61
60 public static final char CURSOR_REQUESTED = 0; 62 public static final char CURSOR_REQUESTED = 0;
61 public static final char CURSOR_SCREEN_CHANGE = 1; 63 public static final char CURSOR_SCREEN_CHANGE = 1;
62 public static final char CURSOR_USER_KEY = 2; 64 public static final char CURSOR_USER_KEY = 2;