net: proto-ipv6 in is_config_up
This commit is contained in:
		| @@ -269,23 +269,42 @@ impl<D: Driver + 'static> Stack<D> { | |||||||
|     /// Get whether the network stack has a valid IP configuration. |     /// Get whether the network stack has a valid IP configuration. | ||||||
|     /// This is true if the network stack has a static IP configuration or if DHCP has completed |     /// This is true if the network stack has a static IP configuration or if DHCP has completed | ||||||
|     pub fn is_config_up(&self) -> bool { |     pub fn is_config_up(&self) -> bool { | ||||||
|  |         let v4_up; | ||||||
|  |         let v6_up; | ||||||
|  |  | ||||||
|         #[cfg(feature = "proto-ipv4")] |         #[cfg(feature = "proto-ipv4")] | ||||||
|         { |         { | ||||||
|             return self.config_v4().is_some(); |             v4_up = self.config_v4().is_some(); | ||||||
|         } |         } | ||||||
|  |         #[cfg(not(feature = "proto-ipv4"))] | ||||||
|         #[cfg(not(any(feature = "proto-ipv4")))] |  | ||||||
|         { |         { | ||||||
|             false |             v4_up = false; | ||||||
|         } |  | ||||||
|         } |         } | ||||||
|  |  | ||||||
|     /// Get the current IP configuration. |         #[cfg(feature = "proto-ipv6")] | ||||||
|  |         { | ||||||
|  |             v6_up = self.config_v6().is_some(); | ||||||
|  |         } | ||||||
|  |         #[cfg(not(feature = "proto-ipv6"))] | ||||||
|  |         { | ||||||
|  |             v6_up = false; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         v4_up || v6_up | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     /// Get the current IPv4 configuration. | ||||||
|     #[cfg(feature = "proto-ipv4")] |     #[cfg(feature = "proto-ipv4")] | ||||||
|     pub fn config_v4(&self) -> Option<StaticConfigV4> { |     pub fn config_v4(&self) -> Option<StaticConfigV4> { | ||||||
|         self.with(|_s, i| i.static_v4.clone()) |         self.with(|_s, i| i.static_v4.clone()) | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     /// Get the current IPv6 configuration. | ||||||
|  |     #[cfg(feature = "proto-ipv6")] | ||||||
|  |     pub fn config_v6(&self) -> Option<StaticConfigV6> { | ||||||
|  |         self.with(|_s, i| i.static_v6.clone()) | ||||||
|  |     } | ||||||
|  |  | ||||||
|     /// Run the network stack. |     /// Run the network stack. | ||||||
|     /// |     /// | ||||||
|     /// You must call this in a background task, to process network events. |     /// You must call this in a background task, to process network events. | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user