All Versions
70
Latest Version
Avg Release Cycle
31 days
Latest Release
2284 days ago
Changelog History
Page 7
Changelog History
Page 7
-
v0.6.1 Changes
October 17, 2016โ Added
Ace.TCP.Endpoint.port/1will return the port an endpoint is listening too. Required when the port option is set to0and the port is allocated by the OS.
๐ Fixed
- The
handle_packetandhandle_infocallbacks for a server module are able produce a return of the format{:nosend, state}.
-
v0.6.0 Changes
October 17, 2016โ Added
- Collect all processes in an endpoint
GenServerso that they can be started as a unit and only the endpoint is linked to the calling process. This allows for endpoints to be added to supervision tree.
โ Removed
Ace.TCP.start/2usestart_link/2instead which takes app as the first argument not the second.
- Collect all processes in an endpoint
-
v0.5.2 Changes
October 13, 2016๐ Changed
- The governors will keeps starting server processes to match demand.
-
v0.5.1 Changes
October 10, 2016๐ Changed
- Send any message that is not TCP related to the
handle_infocallback, previous only messages that matched{:data, info}where handled.
- Send any message that is not TCP related to the
-
v0.5.0 Changes
October 07, 2016โ Added
- How to hande a tcp connection is specified by an application server module.
-
v0.4.0 Changes
October 06, 2016โ Added
- System sends welcome message.
- System sends data messages over the socket.
๐ Changed
- Starting a server no longer blocks until the connection has been closed.
-
v0.3.0 Changes
October 04, 2016โ Added
- โก๏ธ Dialyzer for static analysis, with updated contributing instructions.
๐ Changed
- Nothing, only bumped version due to incorrect publishing on hex.
-
v0.2.0 Changes
October 04, 2016โ Added
- โ ExUnit test suit and single test case.
- ExDoc for first hex published version.
๐ Changed
- Restructured to a mix project. Follow new start up instructions in README.
-
v0.1.1 Changes
October 03, 2016๐ Fixed
- ๐ Handle socket closed by client.
-
v0.1.0 Changes
September 18, 2016โ Added
- The simplest TCP echo server.
- All code exists in a single source file
server.ex. - ๐ Documentation is added to the source code.