You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Keep on connecting to this even when i put the details on the conf file
func main() {
// Command line flags
server := flag.String("server", "talkiepi.projectable.me:64738", "the server to connect to")
username := flag.String("username", "", "the username of the client")
password := flag.String("password", "", "the password of the server")
insecure := flag.Bool("insecure", true, "skip server certificate verification")
certificate := flag.String("certificate", "", "PEM encoded certificate and private key")
channel := flag.String("channel", "talkiepi", "mumble channel to join by default")
flag.Parse()
How to make it connect to my mentioned server?
The text was updated successfully, but these errors were encountered:
Keep on connecting to this even when i put the details on the conf file
func main() {
// Command line flags
server := flag.String("server", "talkiepi.projectable.me:64738", "the server to connect to")
username := flag.String("username", "", "the username of the client")
password := flag.String("password", "", "the password of the server")
insecure := flag.Bool("insecure", true, "skip server certificate verification")
certificate := flag.String("certificate", "", "PEM encoded certificate and private key")
channel := flag.String("channel", "talkiepi", "mumble channel to join by default")
How to make it connect to my mentioned server?
The text was updated successfully, but these errors were encountered: