Skip to content

Commit

Permalink
ts-warp.c: Prevent HTTP-port overwriting TRANSPARENT-port
Browse files Browse the repository at this point in the history
  • Loading branch information
mezantrop committed Feb 23, 2024
1 parent fdc6652 commit c6a76c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# CHANGELOG

* **2024.02.21 Current**
* `ts-warp.c`: Prevent `HTTP`-port overwriting `TRANSPARENT`-port
* `build.sh` when makind `gui-warp.app` downloads/builds static SSL and SSH2 libraries `WITH_LIBSSH2=1 sh ./build.sh`
* `SSH2` proxy supported in any position of a `CHAIN`
* `gui-warp.app`: on macOS deiconify from Dock; `LICENSE` file added to the application
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Testing, bug-hunting

* Alicja Michalska <[email protected]>
* András Dániel Árk @Deniel00 <[email protected]>
* Bart Couvreur <[email protected]>
* Gema Robles <[email protected]>
* Gleb Reys <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion ts-warp.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ All parameters are optional:

case 'H': /* Internal HTTP server IP/name */
haddr = strsep(&optarg, ":"); /* IP:PORT */
if (optarg) tport = optarg;
if (optarg) hport = optarg;
break;

case 'c': /* INI-file */
Expand Down

0 comments on commit c6a76c4

Please sign in to comment.