diff options
author | David Robillard <d@drobilla.net> | 2012-05-09 16:38:49 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-09 16:38:49 +0000 |
commit | ffdf4624323af943a2f3f7241fa87d97afc50460 (patch) | |
tree | e6faffb9d979cba055bde24d1957420abdea851a /src/shared | |
parent | 6932da9169a38a5a8eafc63357b9ede00cb46117 (diff) | |
download | ingen-ffdf4624323af943a2f3f7241fa87d97afc50460.tar.gz ingen-ffdf4624323af943a2f3f7241fa87d97afc50460.tar.bz2 ingen-ffdf4624323af943a2f3f7241fa87d97afc50460.zip |
Remove old HTTP and OSC stuff.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4329 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/Configuration.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/shared/Configuration.cpp b/src/shared/Configuration.cpp index fafe7a49..f1eda529 100644 --- a/src/shared/Configuration.cpp +++ b/src/shared/Configuration.cpp @@ -25,18 +25,18 @@ Configuration::Configuration() : Raul::Configuration( "A realtime modular audio processor.", "Ingen is a flexible modular system that be used in various ways.\n" - "The engine can run as a stand-alone server controlled via a network protocol\n" - "(e.g. OSC), or internal to another process (e.g. the GUI). The GUI, or other\n" + "The engine can run as a stand-alone server controlled via network protocol,\n" + "or internal to another process (e.g. the GUI). The GUI, or other\n" "clients, can communicate with the engine via any supported protocol, or host the\n" "engine in the same process. Many clients can connect to an engine at once.\n\n" "Examples:\n" - " ingen -e # Run an engine, listen for OSC\n" - " ingen -g # Run a GUI, connect via OSC\n" - " ingen -eg # Run an engine and a GUI in one process\n" - " ingen -eg patch.ttl # Run an engine and a GUI and load a patch file\n" - " ingen -eg patch.ingen # Run an engine and a GUI and load a patch bundle") + " ingen -e # Run an engine, listen for connections\n" + " ingen -g # Run a GUI, connect to running engine\n" + " ingen -eg # Run an engine and a GUI in one process\n" + " ingen -egl patch.ttl # Run an engine and a GUI and load a patch file\n" + " ingen -egl patch.ingen # Run an engine and a GUI and load a patch bundle") { - add("client-port", 'C', "Client OSC port", INT, Value()); + add("client-port", 'C', "Client port", INT, Value()); add("connect", 'c', "Connect to engine URI", STRING, Value("osc.udp://localhost:16180")); add("engine", 'e', "Run (JACK) engine", BOOL, Value(false)); add("engine-port", 'E', "Engine listen port", INT, Value(16180)); |