We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84dfe67 commit c0edfbfCopy full SHA for c0edfbf
src/route/builder.rs
@@ -115,6 +115,13 @@ impl<T> RouteMessageBuilder<T> {
115
self
116
}
117
118
+ #[cfg(not(target_os = "android"))]
119
+ /// Sets mark value on route.
120
+ pub fn mark(mut self, mark: u32) -> Self {
121
+ self.message.attributes.push(RouteAttribute::Mark(mark));
122
+ self
123
+ }
124
+
125
/// Sets the route protocol.
126
///
127
/// Default is static route protocol.
0 commit comments