The complete list is:
Code:
public static final byte PROTOCOL_RTMP = 0x01;
public static final byte PROTOCOL_RTMPT = 0x03;
public static final byte PROTOCOL_HTTP = 0x21;
public static final byte PROTOCOL_RTSP = 0x22;
public static final byte PROTOCOL_RTSPHTTP = 0x23;
public static final byte PROTOCOL_RTSPTUNNELINGGET = 0x26;
public static final byte PROTOCOL_RTSPTUNNELINGPOST = 0x27;
If it is RTMPE or RTMPTE then IClient.isEncrypted() will be true. If RTMPS then IClient.isEncrypted() will be false but IClient.isSecure() will be true.
Charlie