aboutsummaryrefslogtreecommitdiff
path: root/src/sys/shell/udp.rs
blob: 6a48b6941d72d35d74352644a7d5dd6cebe69e9e (plain)
1
2
3
4
5
6
7
8
9
10
11
#![cfg(not(target_os = "wasi"))]
use std::io;
use std::net::{self, SocketAddr};

pub fn bind(_: SocketAddr) -> io::Result<net::UdpSocket> {
    os_required!()
}

pub(crate) fn only_v6(_: &net::UdpSocket) -> io::Result<bool> {
    os_required!()
}