aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim/src/net.rs
blob: e7ecb188fa285f00b4e28b8e67309876300194ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pub fn gethostname() -> String {
    todo!()
}

pub fn gethostbyname(_hostname: &str) -> String {
    todo!()
}

pub fn inet_pton(_host: &str) -> Option<Vec<u8>> {
    todo!()
}

pub fn http_get_last_response_headers() -> Option<Vec<String>> {
    todo!()
}

pub fn http_clear_last_response_headers() {
    todo!()
}