Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
balloon-tx-monolith
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
Stephen D
balloon-tx-monolith
Commits
ff18ea81
Commit
ff18ea81
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
prevent replay attacks
parent
9f8bbb76
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/aprs.rs
+6
-4
6 additions, 4 deletions
src/aprs.rs
src/control.rs
+1
-1
1 addition, 1 deletion
src/control.rs
with
7 additions
and
5 deletions
src/aprs.rs
+
6
−
4
View file @
ff18ea81
...
...
@@ -61,7 +61,7 @@ impl CommandHandler {
}
}
pub
fn
process_forever
(
&
self
)
{
pub
fn
process_forever
(
&
mut
self
)
{
tokio
::
runtime
::
Builder
::
new_current_thread
()
.enable_all
()
.build
()
...
...
@@ -76,7 +76,7 @@ impl CommandHandler {
});
}
async
fn
connect_and_process
(
&
self
)
->
anyhow
::
Result
<
()
>
{
async
fn
connect_and_process
(
&
mut
self
)
->
anyhow
::
Result
<
()
>
{
// TODO don't hardcode this
let
mut
tnc
=
Tnc
::
connect_tcp
(
"localhost:8001"
)
.await
?
;
...
...
@@ -89,7 +89,7 @@ impl CommandHandler {
Ok
(())
}
fn
process_packet
(
&
self
,
packet
:
&
AprsPacket
)
{
fn
process_packet
(
&
mut
self
,
packet
:
&
AprsPacket
)
{
if
let
AprsData
::
Message
(
msg
)
=
&
packet
.data
{
if
msg
.addressee
==
self
.callsign
.as_bytes
()
{
if
let
Err
(
e
)
=
self
.process_msg
(
&
msg
.text
)
{
...
...
@@ -99,7 +99,7 @@ impl CommandHandler {
}
}
fn
process_msg
(
&
self
,
msg
:
&
[
u8
])
->
anyhow
::
Result
<
()
>
{
fn
process_msg
(
&
mut
self
,
msg
:
&
[
u8
])
->
anyhow
::
Result
<
()
>
{
let
msg
=
String
::
from_utf8
(
msg
.to_vec
())
?
;
let
mut
iter
=
msg
.split
(
'|'
);
...
...
@@ -122,6 +122,8 @@ impl CommandHandler {
bail!
(
"Given ID too small"
);
}
self
.min_id
=
id
+
1
;
let
cmd
=
Command
::
decode
(
cmd
.as_bytes
())
.context
(
"Invalid command"
)
?
;
match
cmd
{
...
...
This diff is collapsed.
Click to expand it.
src/control.rs
+
1
−
1
View file @
ff18ea81
...
...
@@ -66,7 +66,7 @@ impl Controller {
// used to request HD images, as well as
// to initiate burst/cutdown
fn
aprs_thread
(
config
:
Config
,
tx
:
Sender
<
u8
>
)
{
let
handler
=
CommandHandler
::
new
(
let
mut
handler
=
CommandHandler
::
new
(
config
.callsign
,
config
.secret
,
config
.burst_command
,
...
...
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