1 2 29 30 package com.jcraft.jhttptunnel; 31 32 class JHttpTunnel{ 33 static final byte TUNNEL_OPEN=1; 34 static final byte TUNNEL_DATA=2; 35 static final byte TUNNEL_PADDING=3; 36 static final byte TUNNEL_ERROR=4; 37 static final byte TUNNEL_SIMPLE=0x40; 38 static final byte TUNNEL_PAD1=5|TUNNEL_SIMPLE; 39 static final byte TUNNEL_CLOSE=6|TUNNEL_SIMPLE; 40 static final byte TUNNEL_DISCONNECT=7|TUNNEL_SIMPLE; 41 } 42 | Popular Tags |