forked from pool/ser2net
Marcus Meissner
668ded05dc
- Update to version 4.3.0 * Add mDNS support in ser2net for advertising. * Some minor bug fixes. OBS-URL: https://build.opensuse.org/request/show/844924 OBS-URL: https://build.opensuse.org/package/show/network:utilities/ser2net?expand=0&rev=28
226 lines
9.6 KiB
Plaintext
226 lines
9.6 KiB
Plaintext
-------------------------------------------------------------------
|
|
Thu Oct 29 19:37:25 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
|
|
|
- Update to version 4.3.0
|
|
* Add mDNS support in ser2net for advertising.
|
|
* Some minor bug fixes.
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Oct 6 20:56:07 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
|
|
|
- Update to version 4.2.3
|
|
* bugfix release only
|
|
* No user visible changes
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Aug 24 21:11:05 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
|
|
|
- Update to version 4.2.2
|
|
* Add user lists, so you can specify which users are allowed to
|
|
use which connections.
|
|
* Split up dataxfer.c into smaller files, since it was far too
|
|
large.
|
|
* Converted to SPDX license identifiers in the files.
|
|
* tcpd on the controller interface had the wrong name, make it
|
|
the same as the 3.5 release.
|
|
|
|
-------------------------------------------------------------------
|
|
Sun Aug 9 14:31:22 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
|
|
|
- Update to version 4.2.1
|
|
controller:
|
|
* Added a yaml mode for the controller interface. This should
|
|
make having a program talk to the controller much easier.
|
|
* In yaml mode for the controller interface, add asychronous
|
|
notifications to know if anything connects or disconnects.
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Jul 8 18:53:31 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
|
|
|
- Update to version 4.2.0
|
|
telnet:
|
|
* There was an issue with telnet handling where it could get
|
|
into a loop talking to the remote end.
|
|
* Fix an issue where an error in a certain place could cause
|
|
closing to hang.
|
|
selector:
|
|
Allow an arbitrary number of file descriptors with epoll. With
|
|
epoll, you can set the max number of fds > FD_SETSIZE. Allow
|
|
that.
|
|
IPv6:
|
|
* There was a bug in the Linux SCTP stack dealing with IPv6
|
|
handling that I thought was a bug in ser2net. So I looked, and
|
|
I found some issues with IPv6 in general and the way it handles
|
|
IPv4 address mapping. In the new code:
|
|
Modify the operation of an address without "ipv6," explicitly
|
|
in front of it to all V4 mapped addresses. And fix the connect
|
|
side to set V6 only on the socket if "ipv6,"is in front of it.
|
|
This means you cannot mix "ipv6," and "ipv6n4," addresses on
|
|
the same connection, and the default is now "ipv6n4"
|
|
This broke handling of things like "tcp,1234", so rework those
|
|
to only use IPv6 when it is mapped. That, in turn, broke UDP.
|
|
Or, more accurately, expose a UDP bug, so some work had to be
|
|
done to handle IPv4 mapped addresses in IPv6 by reworking
|
|
address comparison to handle that.
|
|
general:
|
|
convert gensio_raddr_to_str(), gensio_get_raddr(), and
|
|
gensio_remote_id() to use gensio_control(). Having separate
|
|
functions for those added to the API and added a lot of code
|
|
to all the intermediate layer. The function are there but
|
|
deprecated, and use the ioctls underneath them.
|
|
Have gensio snprint functions return a gensiods
|
|
Add dll visibililty handling. This is required for windows,
|
|
and makes things cleaner. As part of this, functions should
|
|
all be the right visibility now.
|
|
Lots of other little bug fixes and such.
|
|
relpkt:
|
|
There were issues with the way the base code handled certain
|
|
things. For a real protocol that might have outstanding data
|
|
to send but cannot send due to flow control, new functions
|
|
needs to be added to the base layer to account for this, and
|
|
relpkt needed to use them.
|
|
Fixed several other issues dealing with close handling and flow
|
|
control. It runs much better now.
|
|
msgdelim:
|
|
There was an issue with telnet handling where it could get into
|
|
a loop talking to the remote end.
|
|
Fix an issue where an error in a certain place could cause
|
|
closing to hang.
|
|
file descriptor based gensios:
|
|
Fixed an issue that would result in a callback being done after
|
|
close is compelete.
|
|
UDP:
|
|
As part of an added test, I found a situation where if the
|
|
upper layer doesn't accept the data for a UDP packet, the UDP
|
|
layer would not accept any more data from the socket.
|
|
|
|
-------------------------------------------------------------------
|
|
Sat May 16 14:56:56 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
|
|
|
- Update to version 4.1.8
|
|
* ser2net will now retry accepters and connect back connectors
|
|
if they fail to come up or get an error.
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Apr 29 06:32:58 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
|
|
|
- Update to version 4.1.7
|
|
* Fix trace files so the actually work.
|
|
* Add a sendon option to cause data to be forwarded immediately
|
|
if the given sequence is seen.
|
|
* Convert the tests to use yaml configuration.
|
|
* Allow stdin to be read as a yaml config file.
|
|
* Allow yaml config to be passed in on the command line directly.
|
|
* Fix some issues with connect back handling.
|
|
* A host of other smaller things.
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Apr 21 10:17:48 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
|
|
|
- Install the configuration file into the correct directory
|
|
-> %{_sysconfdir}/ser2net/
|
|
|
|
-------------------------------------------------------------------
|
|
Sun Apr 19 12:19:00 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
|
|
|
- Update to version 4.1.6
|
|
* upstream does not provide a changelog
|
|
- Drop patch:
|
|
* ser2net-config.patch (config is now done via YAML)
|
|
- Add BR: pkgconfig(libgensio), pkgconfig(yaml-0.1)
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Sep 6 23:18:53 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
|
|
|
- Replace %__-type macro indirections.
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Aug 17 14:24:52 UTC 2018 - agraf@suse.com
|
|
|
|
- Update to version 3.5
|
|
- allows to declare device aliases which enabled by-path device names
|
|
- adapted ser2net-config.patch
|
|
- builds with autoconf, add build dependencies (autoconf, automake, libtool)
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Mar 23 01:37:22 UTC 2015 - p.drouand@gmail.com
|
|
|
|
- Update to version 2.10.0
|
|
* utils.c, controller.c, dataxfer.c: Return an errno from
|
|
scan_tcp_port() so it can return an out of memory error.
|
|
* controller.c, controller.h, ser2net.c: Add an out of memory
|
|
return code from controller_init().
|
|
* utils.c, utils.h, dataxfer.c, controller.c: Rework the handling
|
|
of addresses to work properly with all the return values of
|
|
getaddrinfo, and to prefer IPV6 over IPV4 when opening the socket.
|
|
This means if you specify a number, it will open the IPV6 ::,port
|
|
address first. This was a big cleanup, and moved a lot of the
|
|
base socket handling into utils.h.
|
|
* dataxfer.c: Rework the stdio handling so it doesn't rely on the
|
|
port number in the address, since that is now gone.
|
|
* dataxfer.c: Set port->closestr to NULL when freeing it to avoid
|
|
a double-free.
|
|
* readconfig.c, ser2net.8: Rework the input handling so an IPV6
|
|
can be specified as part of the portnum parameter. This was hard
|
|
because IPV6 addresses have ':' in them. Basically, if there is a
|
|
"," in the port specification, assume that everything from the
|
|
beginning of the line to the ':' after the ',' is the port number.
|
|
* utils.c, utils.h, dataxfer.c, controller.c: Modified address
|
|
handling so that ser2net opens all the addresses returned by
|
|
getaddrinfo, not just the first one. That should make things
|
|
work correctly in a lot more cases.
|
|
* io.h, devcfg.h, devcfg.c, dataxfer.c, buffer.c, buffer.h: Abstract
|
|
the device I/O operations.
|
|
* utils.c, utils.h, controller.h, controller.c: Fix some const
|
|
correctness issues
|
|
* conroller.c, controller.h: Add printf-style output.
|
|
* dataxfer.h, dataxfer.c, devcfg.h, devcfg.c, io.h, readconfig:
|
|
Rework the error and output handling to make it more flexible, so
|
|
errors can be output with useful information from the lower
|
|
* utils.h, readconfig.c, dataxfer.c: Rework the find_xxx
|
|
functions to return a strdup of the string.
|
|
* dataxfer.c, dataxfer.h, devcfg.h: Remove the dinfo structure
|
|
and move the contents into the port structure, and remove the
|
|
now empty devcfg.h.
|
|
* configure.ac: Minor rework.
|
|
* ser2net.h, Makefile.am: Move some things into a new
|
|
ser2net.h file.
|
|
* devcfg.c, controller.c, dataxfer.c, ser2net.c, utils.c: Add the
|
|
ser2net.h include file.
|
|
* dataxfer.c: Fix some EAGAIN handling.
|
|
- Require systemd-rpm-macros instead of pkgconfig(systemd)
|
|
- Remove redundant %clean section
|
|
- Update ser2net-config.patch
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Mar 20 19:47:15 UTC 2014 - crrodriguez@opensuse.org
|
|
|
|
- version 2.9.1
|
|
* drop tcpwrappers support
|
|
* Fix a bug in format strings where hex element (\x)
|
|
would have the wrong values for a-f.
|
|
* Make RFC2217 signature configurable:
|
|
* The baudrate, that will be sent to the client,
|
|
was converted twice.
|
|
-------------------------------------------------------------------
|
|
Fri Dec 21 20:21:12 UTC 2012 - crrodriguez@opensuse.org
|
|
|
|
- Enable tcp-wrappers support
|
|
- ser2net-config.patch Do not open any serial2net connections
|
|
by default, it is up to the user to do so.
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Dec 20 22:11:44 UTC 2012 - crrodriguez@opensuse.org
|
|
|
|
- Initial version for factory, 2.8.rc3
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Feb 26 11:03:05 AEST 2008 - developer@jefferyfernandez.id.au
|
|
|
|
- Cleaned up init script
|
|
-------------------------------------------------------------------
|
|
Mon Feb 25 22:42:05 AEST 2008 - developer@jefferyfernandez.id.au
|
|
|
|
- Initial release for openSUSE
|
|
-------------------------------------------------------------------
|