Skip to content

Commit 3008bef

Browse files
committed
Update SSDP source port to 3339
1 parent 7f0c4e5 commit 3008bef

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Go2TV also supports selecting subtitles for video files that have embedded subti
9595

9696
**SSDP Listen Port Range (for firewall configurations)**
9797

98-
Go2TV now binds the SSDP listener to a port within the fixed range 1900-2000, instead of relying on the system's automatic port assignment. The application will automatically select the first available port from this range. If you are running Go2TV behind a firewall, ensure that inbound UDP traffic is allowed on ports 1900-2000 to enable proper SSDP discovery and device communication.
98+
Go2TV now binds the SSDP listener to a port within the fixed range 3339-3438, instead of relying on the system's automatic port assignment. The application will automatically select the first available port from this range. If you are running Go2TV behind a firewall, ensure that inbound UDP traffic is allowed on ports 3339-3438 to enable proper SSDP discovery and device communication.
9999

100100
**MacOS potential issues**
101101

assets/linux/app.go2tv.go2tv.appdata.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
<li>Resolved FFmpeg video scaling issues.</li>
5858
<li>Increased size of the subtitles when transcoding.</li>
5959
<li>Added new translations for Chinese.</li>
60+
<li>Improved device discoverability: the app now uses source ports 3339-3438 for SSDP discoverability.</li>
6061
</ul>
6162
</description>
6263
<url type="details">https://github.com/alexballas/go2tv/releases/tag/v1.19.0</url>

devices/devices.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func LoadSSDPservices(delay int) (map[string]string, error) {
2323
// Reset device list every time we call this.
2424
urlList := make(map[string]string)
2525

26-
port := 1900
26+
port := 3339
2727

2828
var (
2929
address *net.UDPAddr

0 commit comments

Comments
 (0)