瀏覽代碼

Remove *Socket::{process,dispatch} from public interface.

These no longer have to be public, since our required Rust version
has pub(crate).
whitequark 7 年之前
父節點
當前提交
5dfc861e38
共有 3 個文件被更改,包括 12 次插入17 次删除
  1. 4 5
      src/socket/raw.rs
  2. 4 6
      src/socket/tcp.rs
  3. 4 6
      src/socket/udp.rs

+ 4 - 5
src/socket/raw.rs

@@ -145,9 +145,8 @@ impl<'a, 'b> RawSocket<'a, 'b> {
         Ok(buffer.len())
     }
 
-    /// See [Socket::process](enum.Socket.html#method.process).
-    pub fn process(&mut self, _timestamp: u64, ip_repr: &IpRepr,
-                   payload: &[u8]) -> Result<(), Error> {
+    pub(crate) fn process(&mut self, _timestamp: u64, ip_repr: &IpRepr,
+                          payload: &[u8]) -> Result<(), Error> {
         match self.ip_version {
             IpVersion::Ipv4 => {
                 if ip_repr.protocol() != self.ip_protocol {
@@ -169,8 +168,8 @@ impl<'a, 'b> RawSocket<'a, 'b> {
     }
 
     /// See [Socket::dispatch](enum.Socket.html#method.dispatch).
-    pub fn dispatch<F, R>(&mut self, _timestamp: u64, _limits: &DeviceLimits,
-                          emit: &mut F) -> Result<R, Error>
+    pub(crate) fn dispatch<F, R>(&mut self, _timestamp: u64, _limits: &DeviceLimits,
+                                 emit: &mut F) -> Result<R, Error>
             where F: FnMut(&IpRepr, &IpPayload) -> Result<R, Error> {
         let mut packet_buf = self.tx_buffer.dequeue_mut().map_err(|()| Error::Exhausted)?;
         net_trace!("[{}]:{}:{}: sending {} octets",

+ 4 - 6
src/socket/tcp.rs

@@ -631,9 +631,8 @@ impl<'a> TcpSocket<'a> {
         self.state = state
     }
 
-    /// See [Socket::process](enum.Socket.html#method.process).
-    pub fn process(&mut self, timestamp: u64, ip_repr: &IpRepr,
-                   payload: &[u8]) -> Result<(), Error> {
+    pub(crate) fn process(&mut self, timestamp: u64, ip_repr: &IpRepr,
+                          payload: &[u8]) -> Result<(), Error> {
         debug_assert!(ip_repr.protocol() == IpProtocol::Tcp);
 
         if self.state == State::Closed { return Err(Error::Rejected) }
@@ -953,9 +952,8 @@ impl<'a> TcpSocket<'a> {
         Ok(())
     }
 
-    /// See [Socket::dispatch](enum.Socket.html#method.dispatch).
-    pub fn dispatch<F, R>(&mut self, timestamp: u64, limits: &DeviceLimits,
-                          emit: &mut F) -> Result<R, Error>
+    pub(crate) fn dispatch<F, R>(&mut self, timestamp: u64, limits: &DeviceLimits,
+                                 emit: &mut F) -> Result<R, Error>
             where F: FnMut(&IpRepr, &IpPayload) -> Result<R, Error> {
         if self.remote_endpoint.is_unspecified() { return Err(Error::Exhausted) }
 

+ 4 - 6
src/socket/udp.rs

@@ -150,9 +150,8 @@ impl<'a, 'b> UdpSocket<'a, 'b> {
         Ok((buffer.len(), endpoint))
     }
 
-    /// See [Socket::process](enum.Socket.html#method.process).
-    pub fn process(&mut self, _timestamp: u64, ip_repr: &IpRepr,
-                   payload: &[u8]) -> Result<(), Error> {
+    pub(crate) fn process(&mut self, _timestamp: u64, ip_repr: &IpRepr,
+                          payload: &[u8]) -> Result<(), Error> {
         debug_assert!(ip_repr.protocol() == IpProtocol::Udp);
 
         let packet = UdpPacket::new_checked(&payload[..ip_repr.payload_len()])?;
@@ -173,9 +172,8 @@ impl<'a, 'b> UdpSocket<'a, 'b> {
         Ok(())
     }
 
-    /// See [Socket::dispatch](enum.Socket.html#method.dispatch).
-    pub fn dispatch<F, R>(&mut self, _timestamp: u64, _limits: &DeviceLimits,
-                          emit: &mut F) -> Result<R, Error>
+    pub(crate) fn dispatch<F, R>(&mut self, _timestamp: u64, _limits: &DeviceLimits,
+                                 emit: &mut F) -> Result<R, Error>
             where F: FnMut(&IpRepr, &IpPayload) -> Result<R, Error> {
         let packet_buf = self.tx_buffer.dequeue().map_err(|()| Error::Exhausted)?;
         net_trace!("[{}]{}:{}: sending {} octets",