wmnsk / go-tcap

TCAP implementation in Golang.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to run client

naseemr opened this issue · comments

I am new to go and following your instruction to run client. I am getting this error below:
go-tcap/examples/client# ./client -h
bash: ./client: No such file or directory

I figured out how to run, now I am lost on how do I configure sctp source port. Please help

Thanks for your support. so I had the following update:
m3conn, err := m3ua.Dial(ctx, "m3ua", "192.168.86.50:2092", raddr, m3config)

But getting error : ./client.go:67:40: cannot use "10.250.3.21:2092" (type string) as type *sctp.SCTPAddr in argument to m3ua.Dial

The error is telling you what you need. Like raddr, you should use *sctp.SCTPAddr instead of string.