Skip to content

Commit

Permalink
Fix portRange comment
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Feb 17, 2024
1 parent 9efb262 commit 4818977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electron/ports.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const net = require("net");

const portRange = { startPort: 39152, endPort: 65535 }; //only source dynamic and private ports https://www.arubanetworks.com/techdocs/AOS-S/16.10/MRG/YC/content/common%20files/tcp-por-num-ran.htm
const portRange = { startPort: 39152, endPort: 65535 }; //only source dynamic and private ports https://www.arubanetworks.com/techdocs/AOS-S/16.10/MRG/YC/content/common%20files/tcp-por-num-ran.htm

const isPortAvailable = async (port) => {
return new global.Promise((resolve, reject) => {
Expand Down

0 comments on commit 4818977

Please sign in to comment.