API update to provide enough information to support GFE 3.0.7

This commit is contained in:
Cameron Gutman
2016-10-05 17:23:59 -07:00
parent ed2c4e716b
commit f57bd745b4
10 changed files with 103 additions and 48 deletions

View File

@@ -218,7 +218,7 @@ int startVideoStream(void* rendererContext, int drFlags) {
}
}
if (ServerMajorVersion == 3) {
if (AppVersionQuad[0] == 3) {
// Connect this socket to open port 47998 for our ping thread
firstFrameSocket = connectTcpSocket(&RemoteAddr, RemoteAddrLen,
FIRST_FRAME_PORT, FIRST_FRAME_TIMEOUT_SEC);
@@ -234,7 +234,7 @@ int startVideoStream(void* rendererContext, int drFlags) {
return err;
}
if (ServerMajorVersion == 3) {
if (AppVersionQuad[0] == 3) {
// Read the first frame to start the flow of video
err = readFirstFrame();
if (err != 0) {