-
Notifications
You must be signed in to change notification settings - Fork 262
Add new Common and signalling libs and rewrite Cirrus (now Wilbur) to use them #497
Conversation
mcottontensor
commented
Feb 28, 2024
- Added Common library
- Added Signalling library
- Removed Cirrus
- Added Wilbur
…ck and forth on logging. A bunch of cleanup.
…Now theyre more managed by the registry.
…operly report the signalling version. Tweaked cli arguments.
…n the new server.
…the signalling lib into Signalling.
…ker and https changes.
…m revision to branch
… us to specify which branch.
…ence in frontend. Cleaned up some broken windows scripts for wilbur. More will need to be updated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks very nice, some minor comments to address before landing.
IF "%DEFAULT_STUN%"=="1" ( | ||
set STUN_SERVER=stun.l.google.com:19302 | ||
) | ||
FOR /f %%A IN ('powershell -command "(Test-Connection -ComputerName (hostname) -Count 1 | Select IPV4Address).IPV4Address.IPAddressToString"') DO set LOCAL_IP=%%A |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove dep on powershell by doing? Does that work?
@Echo off
for /f "tokens=1* delims=: " %%A in (
'nslookup myip.opendns.com. resolver1.opendns.com 2^>NUL^|find "Address:"'
) Do set ExtIP=%%B
Echo External IP is : %ExtIP%
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could probably work something out, but we're already using powershell for the ipify remote ip lookup.
IF NOT "%TURN_USER%"=="" ( | ||
IF NOT "%TURN_PASS%"=="" ( | ||
pushd %SCRIPT_DIR%coturn\ | ||
IF "%1"=="bg" ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it make sense for bg
to be in the help commands?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No because it's not a cli option but more of an option of the function being called