jack_connect

Establish a connection between two ports.

When a connection exists, data written to the source port will be available to be read at the destination port.

@pre The port types must be identical.

@pre The @ref JackPortFlags of the @a source_port must include @ref JackPortIsOutput.

@pre The @ref JackPortFlags of the @a destination_port must include @ref JackPortIsInput.

@return 0 on success, EEXIST if the connection is already made, otherwise a non-zero error code

extern (C)
int
jack_connect
(
jack_client_t* client
,
const(char)* source_port
,
const(char)* destination_port
)

Meta