Fixed hard coded path in docu examples

This commit is contained in:
Gerhard Rieger 2022-10-11 12:53:15 +02:00
parent c0c4037a8d
commit 3fe7f7285d
2 changed files with 4 additions and 1 deletions

View file

@ -85,6 +85,9 @@ Documentation:
Fixed typo in doc/socat-tun.html and link in README. Fixed typo in doc/socat-tun.html and link in README.
Thanks to William Suthers for reporting. Thanks to William Suthers for reporting.
Fixed hard coded path in docu examples.
Thanks to Jakub Wilk for sending a patch.
Testing: Testing:
Unset SOCAT_MAIN_WAIT on informational Socat calls Unset SOCAT_MAIN_WAIT on informational Socat calls

View file

@ -3578,7 +3578,7 @@ unicast, multicast, or broadcast address.
label(EXAMPLE_SSD) label(EXAMPLE_SSD)
dit(bf(tt(echo -e "M-SEARCH * HTTP/1.1\nHOST: 239.255.255.250:1900\nMAN: \"ssdp:discover\"\nMX: 4\nST: \"ssdp:all\"\n" |./socat - UDP-DATAGRAM:239.255.255.250:1900,crlf))) dit(bf(tt(echo -e "M-SEARCH * HTTP/1.1\nHOST: 239.255.255.250:1900\nMAN: \"ssdp:discover\"\nMX: 4\nST: \"ssdp:all\"\n" |socat - UDP-DATAGRAM:239.255.255.250:1900,crlf)))
sends an SSDP (Simple Service Discovery Protocol) query to the local network sends an SSDP (Simple Service Discovery Protocol) query to the local network
and collects and outputs the answers received. and collects and outputs the answers received.