https://github.com/harmon25/elixir_udp_server
Simple elixir supervised UDP Server
https://github.com/harmon25/elixir_udp_server
Last synced: 28 days ago
JSON representation
Simple elixir supervised UDP Server
- Host: GitHub
- URL: https://github.com/harmon25/elixir_udp_server
- Owner: harmon25
- License: mit
- Created: 2016-02-26T18:15:50.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-28T02:09:21.000Z (over 10 years ago)
- Last Synced: 2025-12-28T15:00:36.010Z (6 months ago)
- Language: Elixir
- Size: 22.5 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LogServer
- Elixir Application module used to start a GenServer based UDP Server on a user defined port
- can pass log handler callback as `:log_handler` application environment config
### Example config
```
config :log_server,
ip: {127,0,0,1},
port: 1514,
log_handler: {module, function}
```
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add log_server to your list of dependencies in `mix.exs`:
def deps do
[{:udp_server, git: "https://github.com/harmon25/elixir_udp_server.git"}]
end