@@ -40,36 +40,36 @@ cargo install --path .
4040
4141``` bash
4242# Connect to a WebTransport server (interactive mode)
43- webtranscat wss ://example.com:4443
43+ webtranscat https ://example.com:4443
4444
4545# Connect with verbose logging
46- webtranscat -v wss ://example.com:4443
46+ webtranscat -v https ://example.com:4443
4747
4848# Connect with insecure certificate verification (for testing)
49- webtranscat --insecure wss ://localhost:4443
49+ webtranscat --insecure https ://localhost:4443
5050
5151# Listen-only mode (don't send stdin input)
52- webtranscat -u wss ://example.com:4443
52+ webtranscat -u https ://example.com:4443
5353
5454# Exit after receiving one message
55- webtranscat -1 wss ://example.com:4443
55+ webtranscat -1 https ://example.com:4443
5656
5757# Multiple verbosity levels (like websocat)
58- webtranscat -vv wss ://example.com:4443 # Debug level
59- webtranscat -vvv wss ://example.com:4443 # Trace level
58+ webtranscat -vv https ://example.com:4443 # Debug level
59+ webtranscat -vvv https ://example.com:4443 # Trace level
6060
6161# Quiet mode (suppress diagnostic messages)
62- webtranscat -q wss ://example.com:4443
62+ webtranscat -q https ://example.com:4443
6363```
6464
6565### Environment Variables
6666
6767``` bash
6868# Override logging with RUST_LOG
69- RUST_LOG=debug webtranscat wss ://example.com:4443
69+ RUST_LOG=debug webtranscat https ://example.com:4443
7070
7171# Early startup debugging
72- WEBTRANSCAT_EARLY_LOG=1 webtranscat wss ://example.com:4443
72+ WEBTRANSCAT_EARLY_LOG=1 webtranscat https ://example.com:4443
7373```
7474
7575## Command Line Options
0 commit comments