-
Notifications
You must be signed in to change notification settings - Fork 610
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
comms/ser2net: update to 4.6.4 and take maintainership
Changelog: https://sourceforge.net/p/ser2net/news Major changes since 3.5.1 (2017) * massive rewrite of ser2net * Configuration has been converted over to use YAML * supports encrypted and authenticated connections using gensio gtlssh * ability to "connect back" to a remote address data comes in on a device * new gensio dependency to manage data streams, SSL, TELNET and so * add mDNS support * DSR/RTS line controls on the serialdev gensio * 2-factor authentication support to gtlssh * use PAM passwords to authenticate ser2net connections * ed25519 end elliptical key support for gtlssh and certauth * ratelimit - limit the data throughput on the write side of the gensio stack * AFSK modem gensio has been added to implements the 1200 baud modem used for AX.25 in ham radio This version breaks the existing ser2net configuration who has to be converted over using YAML. Please see the examples on ser2net.yaml sample configuration and read the ser2net.yaml manpage on how to configure the new version. Additional links and resources have been provided on the pkg-message.
- Loading branch information
Showing
6 changed files
with
42 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
TIMESTAMP = 1545042767 | ||
SHA256 (ser2net-3.5.1.tar.gz) = 02f5dd0abbef5a17b80836b0de1ef0588e257106fb5e269b86822bfd001dc862 | ||
SIZE (ser2net-3.5.1.tar.gz) = 437254 | ||
TIMESTAMP = 1739622108 | ||
SHA256 (ser2net-4.6.4.tar.gz) = 75864434c4f002fa3570daaffeb6f794354fca6d8b5814b8386977a3b1416be9 | ||
SIZE (ser2net-4.6.4.tar.gz) = 477746 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- ./port.h.orig 2025-02-16 11:47:28 UTC | ||
+++ ./port.h | ||
@@ -32,6 +32,7 @@ | ||
#include <netdb.h> | ||
#endif | ||
|
||
+#include <netinet/in.h> | ||
#include <gensio/gensio.h> | ||
|
||
#include "gbuf.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[ | ||
{ | ||
type: upgrade | ||
maximum_version: "4.6.4" | ||
message: <<EOM | ||
Upgrading from before 4.6.4, old ser2net configuration is not supported anymore. | ||
You must convert the existing configuration into the new YAML format. | ||
See ser2net.yaml.sample and ser2net.yaml manpage for more details. | ||
|
||
Additional resources can be found on the following wiki page: | ||
https://wiki.freebsd.org/RodrigoOsorio/HowTo/Ser2Net | ||
EOM | ||
} | ||
] |