crate::ix!();
pub fn get_listen_port() -> u16 {
todo!();
}
pub fn get_local(
addr: &mut Service,
paddr_peer: Option<*const NetAddr>) -> bool {
todo!();
}
pub fn convert_seeds(seeds_in: &Vec<u8>) -> Vec<Address> {
todo!();
}
pub fn get_local_address(
paddr_peer: &NetAddr,
n_local_services: ServiceFlags) -> Address {
todo!();
}
pub fn getn_score(addr: &Service) -> i32 {
todo!();
}
pub fn add_local(
addr: &Service,
n_score: Option<i32>) -> bool {
let n_score: i32 = n_score.unwrap_or(LOCAL_NONE.try_into().unwrap());
todo!();
}
pub fn add_local_from_net_addr(
addr: &NetAddr,
n_score: Option<i32>) -> bool {
let n_score: i32 = n_score.unwrap_or(LOCAL_NONE.try_into().unwrap());
todo!();
}
pub fn remove_local(addr: &Service) {
todo!();
}
pub fn set_reachable(
net: Network,
reachable: bool) {
todo!();
}
pub fn is_local(addr: &Service) -> bool {
todo!();
}
pub fn get_bind_address(sock: CSocket) -> Address {
todo!();
}
pub fn add_time_data(
ip: &NetAddr,
n_offset_sample: Duration) {
todo!();
}