summaryrefslogtreecommitdiff
path: root/src/protocol/mpls.rs
diff options
context:
space:
mode:
authorluwenpeng <[email protected]>2023-10-09 10:43:45 +0800
committerluwenpeng <[email protected]>2023-10-09 11:27:54 +0800
commita48db093e708f7aba47386a3de3f828ad2370e90 (patch)
tree2b66f9004942b8ef5035a56a5cd8bd7144abc008 /src/protocol/mpls.rs
parente0c7dfa5bd9d424249b87ec07d377e94d49d139a (diff)
[feature] Support IPv4 Options Decodedev-lwp
Diffstat (limited to 'src/protocol/mpls.rs')
-rw-r--r--src/protocol/mpls.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/mpls.rs b/src/protocol/mpls.rs
index 2f441f9..fc3ee1d 100644
--- a/src/protocol/mpls.rs
+++ b/src/protocol/mpls.rs
@@ -111,7 +111,7 @@ mod tests {
// example
let mut payload = &bytes[..];
while let Ok((remain, header)) = MPLSHeader::decode(payload) {
- println!("return: {:?}, payload: {}", header, remain.len());
+ println!("OK: {:?}, payload: {}", header, remain.len());
payload = remain;
if header.bottom_of_stack {
break;