wrangler 1.21.0

Command-line interface for all things Cloudflare Workers
Documentation
mod host;
mod protocol;

pub use protocol::Protocol;

use host::Host;

use anyhow::Result;
use std::net::{IpAddr, SocketAddr, TcpListener};

#[derive(Debug, Clone)]
pub struct ServerConfig {
    pub host: Host,
    pub listening_address: SocketAddr,
}

impl ServerConfig {
    pub fn new(
        host: Option<String>,
        ip: IpAddr,
        port: u16,
        upstream_protocol: Protocol,
    ) -> Result<Self> {
        let addr = SocketAddr::new(ip, port);
        let listening_address = match TcpListener::bind(&addr) {
            Ok(socket) => socket.local_addr(),
            Err(_) => anyhow::bail!("{} is unavailable, try binding to another address with the --port and --ip flags, or stop other `wrangler dev` processes.", &addr)
        }?;

        let host = if let Some(host) = host {
            Host::new(&host, false)?
        } else {
            Host::new(
                match upstream_protocol {
                    Protocol::Http => "http://tutorial.cloudflareworkers.com",
                    Protocol::Https => "https://tutorial.cloudflareworkers.com",
                },
                true,
            )?
        };

        Ok(ServerConfig {
            host,
            listening_address,
        })
    }
}