Change default homekit ports to 21063 and 21064 (#47491)
We previously used a value in the linux default ephemerial port range which meant that if something else happened to use that port HomeKit would not start up. We now use a value below 32768 to ensure that the port is not randomly unavailablepull/47555/head
parent
2e89f152ba
commit
0d07dae3bc
|
@ -74,8 +74,8 @@ DEFAULT_LOW_BATTERY_THRESHOLD = 20
|
|||
DEFAULT_MAX_FPS = 30
|
||||
DEFAULT_MAX_HEIGHT = 1080
|
||||
DEFAULT_MAX_WIDTH = 1920
|
||||
DEFAULT_PORT = 51827
|
||||
DEFAULT_CONFIG_FLOW_PORT = 51828
|
||||
DEFAULT_PORT = 21063
|
||||
DEFAULT_CONFIG_FLOW_PORT = 21064
|
||||
DEFAULT_SAFE_MODE = False
|
||||
DEFAULT_VIDEO_CODEC = VIDEO_CODEC_LIBX264
|
||||
DEFAULT_VIDEO_MAP = "0:v:0"
|
||||
|
|
Loading…
Reference in New Issue