24 lines
631 B
Java
24 lines
631 B
Java
package com.limelight.nvstream;
|
|
|
|
import java.security.cert.X509Certificate;
|
|
|
|
import javax.crypto.SecretKey;
|
|
|
|
public class ConnectionContext {
|
|
public String serverAddress;
|
|
public X509Certificate serverCert;
|
|
public StreamConfiguration streamConfig;
|
|
public NvConnectionListener connListener;
|
|
public SecretKey riKey;
|
|
public int riKeyId;
|
|
|
|
// This is the version quad from the appversion tag of /serverinfo
|
|
public String serverAppVersion;
|
|
public String serverGfeVersion;
|
|
|
|
public int negotiatedWidth, negotiatedHeight;
|
|
public boolean negotiatedHdr;
|
|
|
|
public int videoCapabilities;
|
|
}
|