Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Igate
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CATS
Igate
Commits
6c0f1d75
Commit
6c0f1d75
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
don't log packets we didn't decode
parent
ec45fba0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/gate.rs
+45
-47
45 additions, 47 deletions
src/gate.rs
with
45 additions
and
47 deletions
src/gate.rs
+
45
−
47
View file @
6c0f1d75
...
...
@@ -119,63 +119,61 @@ pub async fn packet_handler(
.context
(
"Packet receive channel died"
)
?
;
let
mut
buf
=
[
0
;
MAX_PACKET_LEN
];
match
attempt_decode
(
&
packet
,
&
mut
buf
)
{
Ok
(
mut
packet
)
=>
{
let
mut
buf2
=
[
0
;
MAX_PACKET_LEN
];
let
mut
internet_packet
=
packet
.clone_backing
(
&
mut
buf2
);
match
append_internet_to_packet_route
(
&
callsign
,
ssid
,
&
mut
internet_packet
)
{
Some
(())
=>
match
internet_packet
.semi_encode
()
{
Ok
(
encoded
)
=>
{
let
semi
=
SemiPacketIn
{
raw
:
encoded
.to_vec
(),
uuid
:
uuid
.into
(),
};
if
let
Ok
(
mut
packet
)
=
attempt_decode
(
&
packet
,
&
mut
buf
)
{
let
mut
buf2
=
[
0
;
MAX_PACKET_LEN
];
let
mut
internet_packet
=
packet
.clone_backing
(
&
mut
buf2
);
match
append_internet_to_packet_route
(
&
callsign
,
ssid
,
&
mut
internet_packet
)
{
Some
(())
=>
match
internet_packet
.semi_encode
()
{
Ok
(
encoded
)
=>
{
let
semi
=
SemiPacketIn
{
raw
:
encoded
.to_vec
(),
uuid
:
uuid
.into
(),
};
let
_
=
tx
.send
(
semi
);
}
let
_
=
tx
.send
(
semi
);
}
Err
(
e
)
=>
{
eprintln!
(
"Could not semi-encode packet: {e:?}"
);
}
},
None
=>
{
eprintln!
(
"Could not add routing to packet before gating to the Internet. Skipping"
);
Err
(
e
)
=>
{
eprintln!
(
"Could not semi-encode packet: {e:?}"
);
}
},
None
=>
{
eprintln!
(
"Could not add routing to packet before gating to the Internet. Skipping"
);
}
}
match
packet
.should_digipeat
(
&
callsign
,
ssid
)
{
Ok
(())
=>
{
if
let
Err
(
e
)
=
packet
.append_to_route
(
&
callsign
,
ssid
)
{
eprintln!
(
"Could not add routing to packet before digipeating: {e}. Skipping"
);
continue
;
};
let
mut
encoded_buf
=
[
0
;
MAX_PACKET_LEN
];
let
mut
encoded
=
Buffer
::
new_empty
(
&
mut
encoded_buf
);
match
packet
.fully_encode
(
&
mut
encoded
)
{
Ok
(())
=>
{
packet_send
.send
(
encoded
.to_vec
())
.await
.with_context
(||
"Packet send channel died"
)
?
;
}
match
packet
.should_digipeat
(
&
callsign
,
ssid
)
{
Ok
(())
=>
{
if
let
Err
(
e
)
=
packet
.append_to_route
(
&
callsign
,
ssid
)
{
eprintln!
(
"Could not add routing to packet before digipeating: {e}. Skipping"
);
continue
;
};
Err
(
e
)
=>
{
eprintln!
(
"Could not fully-encode packet: {e:?}"
);
}
let
mut
encoded_buf
=
[
0
;
MAX_PACKET_LEN
];
let
mut
encoded
=
Buffer
::
new_empty
(
&
mut
encoded_buf
);
match
packet
.fully_encode
(
&
mut
encoded
)
{
Ok
(())
=>
{
packet_send
.send
(
encoded
.to_vec
())
.await
.with_context
(||
"Packet send channel died"
)
?
;
}
}
Err
(
e
)
=>
{
eprintln!
(
"Not digipeating: {e}"
);
Err
(
e
)
=>
{
eprintln!
(
"Could not fully-encode packet: {e:?}"
);
}
}
};
}
}
Err
(
e
)
=>
eprintln!
(
"Recv error: {e}"
),
};
Err
(
e
)
=>
{
eprintln!
(
"Not digipeating: {e}"
);
}
};
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment