Rename set_broadast() to set_broadcast().

This commit is contained in:
Joseph Crail 2014-07-03 01:30:00 -04:00 committed by Alex Crichton
parent e3fa23bcb6
commit 4a6fcc51a0

View File

@ -165,7 +165,7 @@ impl UdpSocket {
/// Sets the broadcast flag on or off
#[experimental]
pub fn set_broadast(&mut self, broadcast: bool) -> IoResult<()> {
pub fn set_broadcast(&mut self, broadcast: bool) -> IoResult<()> {
if broadcast {
self.obj.hear_broadcasts()
} else {
@ -173,6 +173,12 @@ impl UdpSocket {
}.map_err(IoError::from_rtio_error)
}
/// Sets the broadcast flag on or off
#[deprecated="renamed to `set_broadcast`"]
pub fn set_broadast(&mut self, broadcast: bool) -> IoResult<()> {
self.set_broadcast(broadcast)
}
/// Sets the read/write timeout for this socket.
///
/// For more information, see `TcpStream::set_timeout`