Openflow parser

This commit is contained in:
Eishun Kondoh 2017-11-13 22:52:53 +09:00
parent 70b0d8919e
commit fc02a678de
338 changed files with 9081 additions and 0 deletions

24
mix.exs Normal file
View file

@ -0,0 +1,24 @@
defmodule Tres.Mixfile do
use Mix.Project
def project do
[app: :tres,
version: "0.1.0",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps()]
end
# Run "mix help compile.app" to learn about applications.
def application do
[extra_applications: [:logger, :ranch],
mod: {Tres.Application, []}]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[{:ranch, "~> 1.4.0"},
{:binpp, github: "jtendo/binpp", branch: "master"},
{:pkt, github: "msantos/pkt", ref: "3afb196"}]
end
end