We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2063f39 commit 33e332fCopy full SHA for 33e332f
apf/jackclient.h
@@ -490,13 +490,8 @@ JackClient::JackClient(const std::string& name
490
throw jack_error("Client name is too long! ('" + name + "')");
491
}
492
493
- // TODO: make parameters for these options:
494
- //jack_options_t options = JackNoStartServer;
495
- jack_options_t options = JackUseExactName;
496
- //jack_options_t options = JackNullOption;
497
-
498
- // JackNoStartServer: see also JACK_NO_START_SERVER
499
- // TODO: JackServerName? needs extra parameter in jack_client_open()!
+ jack_options_t options = static_cast<jack_options_t>(
+ JackNoStartServer | JackUseExactName);
500
501
jack_status_t status;
502
_client = jack_client_open(name.c_str(), options, &status);
0 commit comments