1 28 29 package HTTPClient; 30 31 32 41 42 public interface HTTPClientModuleConstants 43 { 44 46 47 int REQ_CONTINUE = 0; 48 49 50 int REQ_RESTART = 1; 51 52 53 int REQ_SHORTCIRC = 2; 54 55 56 int REQ_RESPONSE = 3; 57 58 59 int REQ_RETURN = 4; 60 61 62 int REQ_NEWCON_RST = 5; 63 64 65 int REQ_NEWCON_SND = 6; 66 67 68 70 71 int RSP_CONTINUE = 10; 72 73 74 int RSP_RESTART = 11; 75 76 77 int RSP_SHORTCIRC = 12; 78 79 80 int RSP_REQUEST = 13; 81 82 83 int RSP_SEND = 14; 84 85 86 int RSP_NEWCON_REQ = 15; 87 88 89 int RSP_NEWCON_SND = 16; 90 } 91 92 | Popular Tags |