From 7906980b345ad323ba2cdddda9647e161cb5ecd0 Mon Sep 17 00:00:00 2001 From: mai Date: Wed, 10 Jun 2020 16:18:15 +0200 Subject: [PATCH] updated ALVR_PROTOCOL_VERSION to 25 --- ALVR-common/packet_types.h | 2 +- ALVR/HelloListener.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ALVR-common/packet_types.h b/ALVR-common/packet_types.h index 884c220db1..f8c0174a6f 100644 --- a/ALVR-common/packet_types.h +++ b/ALVR-common/packet_types.h @@ -31,7 +31,7 @@ enum ALVR_PACKET_TYPE { }; enum { - ALVR_PROTOCOL_VERSION = 24 + ALVR_PROTOCOL_VERSION = 25 }; enum ALVR_CODEC { diff --git a/ALVR/HelloListener.cs b/ALVR/HelloListener.cs index b57a220d2f..8eda451fe9 100644 --- a/ALVR/HelloListener.cs +++ b/ALVR/HelloListener.cs @@ -17,7 +17,7 @@ class HelloListener { // Use different port than 9944 used by server. public const int PORT = 9943; - public const int ALVR_PROTOCOL_VERSION = 24; + public const int ALVR_PROTOCOL_VERSION = 25; public const int ALVR_PACKET_TYPE_HELLO_MESSAGE = 1; public const byte ALVR_DEVICE_TYPE_OCULUS_MOBILE = 1; public const byte ALVR_DEVICE_TYPE_DAYDREAM = 2;