Rollup merge of #37432 - achanda:send_to, r=alexcrichton

Clarify that send_to might panic in certain cases

Closes #34202

r? @alexcrichton
This commit is contained in:
Eduard-Mihai Burtescu 2016-11-09 20:51:16 +02:00 committed by GitHub
commit d712882228

View File

@ -67,6 +67,9 @@ impl UdpSocket {
///
/// Address type can be any implementor of `ToSocketAddrs` trait. See its
/// documentation for concrete examples.
/// This will return an error when the IP version of the local socket
/// does not match that returned from `ToSocketAddrs`
/// See https://github.com/rust-lang/rust/issues/34202 for more details.
#[stable(feature = "rust1", since = "1.0.0")]
pub fn send_to<A: ToSocketAddrs>(&self, buf: &[u8], addr: A)
-> io::Result<usize> {