From dd5bf074e2a5c179bad0e8e60ff20beb3c266e9f Mon Sep 17 00:00:00 2001 From: Adilu Khalid Date: Sat, 23 Mar 2024 17:20:10 +0300 Subject: [PATCH] Update README.md changed -server to -addr flag as that is the used flag on the flag parser --- examples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/README.md b/examples/README.md index ab1928c..1a7a255 100644 --- a/examples/README.md +++ b/examples/README.md @@ -14,6 +14,6 @@ This will start long running process that will listen for tcp connections on _lo Client is capable of interacting with the server. You can use client CLI like this: - go run client/main.go -server localhost:2775 -dst_addr 11111 -src_addr 22222 -msg "This is the message" + go run client/main.go -addr localhost:2775 -dst_addr 11111 -src_addr 22222 -msg "This is the message" This will connect to the server at _localhost:2775_, do initial binding in tranceiver mode and send submit_sm with provided parameters. Upon finishing it will unbind from the server.