daniloaz 65282048ae ⬆️ (Cargo.toml): Bump lightstreamer-client version from 0.1.8 to 0.1.9
 (Cargo.toml): Add colored dependency to enhance console output
📝 (README.md): Overhaul documentation to provide comprehensive details about the project, its features, usage, and contribution guidelines
💡 (client_listener.rs, client_message_listener.rs): Add newline at end of file to adhere to POSIX standards

♻️ (connection_options.rs): Refactor code to improve readability and maintainability
🐛 (connection_options.rs): Rename 'reduce_head' to '_reduce_head' to indicate unused variable
♻️ (error.rs): Reorder imports and adjust formatting for consistency
♻️ (item_update.rs): Refactor code to improve readability and maintainability
♻️ (lib.rs): Reorder module imports for better organization

♻️ (ls_client.rs): Refactor code to improve readability and maintainability
💡 (main.rs): Update print statements to use colored output for changed fields
🐛 (main.rs): Fix import order to follow Rust's idiomatic style
🐛 (proxy.rs, subscription.rs, subscription_listener.rs): Add newline at end of file to follow POSIX standard
♻️ (subscription.rs, subscription_listener.rs): Refactor code to improve readability and maintainability

📝 (util.rs): Add newline at end of file to adhere to POSIX standards
2024-04-13 21:24:12 +02:00

84 lines
2.0 KiB
Rust

/// Simple class representing a Proxy configuration.
///
/// An instance of this class can be used through `ConnectionOptions.setProxy()` to instruct
/// a `LightstreamerClient` to connect to the Lightstreamer Server passing through a proxy.
///
/// # Parameters
///
/// * `proxy_type`: the proxy type
/// * `host`: the proxy host
/// * `port`: the proxy port
/// * `user`: the user name to be used to validate against the proxy. Optional.
/// * `password`: the password to be used to validate against the proxy. Optional.
#[derive(Debug)]
pub struct Proxy {
proxy_type: ProxyType,
host: String,
port: u16,
user: Option<String>,
password: Option<String>,
}
impl Proxy {
/// Creates a new instance of `Proxy`.
///
/// # Parameters
///
/// * `proxy_type`: the proxy type
/// * `host`: the proxy host
/// * `port`: the proxy port
/// * `user`: the user name to be used to validate against the proxy. Optional.
/// * `password`: the password to be used to validate against the proxy. Optional.
pub fn new(
proxy_type: ProxyType,
host: String,
port: u16,
user: Option<String>,
password: Option<String>,
) -> Self {
Proxy {
proxy_type,
host,
port,
user,
password,
}
}
/// Returns the proxy type.
pub fn get_proxy_type(&self) -> &ProxyType {
&self.proxy_type
}
/// Returns the proxy host.
pub fn get_host(&self) -> &str {
&self.host
}
/// Returns the proxy port.
pub fn get_port(&self) -> u16 {
self.port
}
/// Returns the proxy user name.
pub fn get_user(&self) -> Option<&String> {
self.user.as_ref()
}
/// Returns the proxy password.
pub fn get_password(&self) -> Option<&String> {
self.password.as_ref()
}
}
/// Represents the type of proxy.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ProxyType {
/// HTTP proxy.
Http,
/// SOCKS4 proxy.
Socks4,
/// SOCKS5 proxy.
Socks5,
}