//! Full control over HTTP transport
//!
//! Provides a pre-configured `RemoteHttpPlugin` directly. This bypasses
//! all port resolution logic — the `BRP_EXTRAS_PORT` environment variable
//! and `with_port()` are not used.
//!
//! Use this when you need to configure options beyond just the port,
//! such as the listen address.
//!
//! ```sh
//! cargo run --example custom_http_plugin
//! ```
use *;
use BrpExtrasPlugin;
use RemoteHttpPlugin;