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
b5f37d24
Commit
b5f37d24
authored
1 year ago
by
Sam Mauldin
Committed by
Stephen D
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Remove requirement for felinet
parent
25fbb027
No related branches found
Branches containing commit
No related tags found
1 merge request
!2
Remove requirement for felinet
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/config.rs
+1
-1
1 addition, 1 deletion
src/config.rs
src/main.rs
+36
-25
36 additions, 25 deletions
src/main.rs
with
37 additions
and
26 deletions
src/config.rs
+
1
−
1
View file @
b5f37d24
...
...
@@ -31,7 +31,7 @@ pub struct Config {
pub
ssid
:
u8
,
#[serde(default)]
pub
icon
:
u16
,
pub
felinet
:
FelinetConfig
,
pub
felinet
:
Option
<
FelinetConfig
>
,
pub
beacon
:
BeaconConfig
,
}
...
...
This diff is collapsed.
Click to expand it.
src/main.rs
+
36
−
25
View file @
b5f37d24
...
...
@@ -129,12 +129,21 @@ async fn gate_forever(
temperature_mutex
,
)
?
;
let
endpoint
=
Endpoint
::
from_str
(
&
config
.felinet.address
)
?
.keep_alive_while_idle
(
true
)
.keep_alive_timeout
(
Duration
::
from_secs
(
5
))
.http2_keep_alive_interval
(
Duration
::
from_secs
(
5
))
.tcp_keepalive
(
Some
(
Duration
::
from_secs
(
5
)));
let
client
=
HandlerClient
::
connect
(
endpoint
)
.await
?
;
let
client
=
if
let
Some
(
felinet_config
)
=
&
config
.felinet
{
let
endpoint
=
Endpoint
::
from_str
(
&
felinet_config
.address
)
?
.keep_alive_while_idle
(
true
)
.keep_alive_timeout
(
Duration
::
from_secs
(
5
))
.http2_keep_alive_interval
(
Duration
::
from_secs
(
5
))
.tcp_keepalive
(
Some
(
Duration
::
from_secs
(
5
)));
Some
(
HandlerClient
::
connect
(
endpoint
)
.await
?
)
}
else
{
eprintln!
(
"No FELINET section specified in configuration. Received packets will not be uploaded!"
);
None
};
let
callsign
=
config
.callsign
.clone
();
{
...
...
@@ -159,28 +168,30 @@ async fn gate_forever(
});
}
{
let
client
=
client
.clone
();
tokio
::
task
::
spawn
(
async
{
felinet_send_forever
(
client
,
tx
)
.await
;
});
}
if
let
Some
(
client
)
=
client
{
{
let
client
=
client
.clone
();
tokio
::
task
::
spawn
(
async
{
felinet_send_forever
(
client
,
tx
)
.await
;
});
}
{
let
mut
client
=
client
.clone
();
tokio
::
task
::
spawn
(
async
move
{
loop
{
client
.ping
(
Request
::
new
(
PingRequest
{
uuid
:
uuid
.into
()
}))
.await
.ok
();
{
let
mut
client
=
client
.clone
();
tokio
::
task
::
spawn
(
async
move
{
loop
{
client
.ping
(
Request
::
new
(
PingRequest
{
uuid
:
uuid
.into
()
}))
.await
.ok
();
tokio
::
time
::
sleep
(
Duration
::
from_secs
(
600
))
.await
;
}
});
}
tokio
::
time
::
sleep
(
Duration
::
from_secs
(
600
))
.await
;
}
});
felinet_receive_forever
(
client
,
packet_send
,
&
callsign
,
config
.ssid
,
uuid
)
.await
;
}
felinet_receive_forever
(
client
,
packet_send
,
&
callsign
,
config
.ssid
,
uuid
)
.await
;
Ok
(())
}
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