forked from AndreasVoellmy/openflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openflow.cabal
69 lines (62 loc) · 1.93 KB
/
openflow.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
Name: openflow
Version: 0.3.1
Synopsis: OpenFlow
Cabal-Version: >=1.10
Build-Type: Simple
Stability: Experimental
Category: Network
License: OtherLicense
License-file: LICENSE
Author: Andreas Voellmy <[email protected]>
Maintainer: Andreas Voellmy
homepage: https://github.com/AndreasVoellmy/openflow
Description:
This package implements the OpenFlow 1.0 and a large part of the OpenFlow 1.3 protocols.
It defines a collection of data types representing the logical contents of OpenFlow messages,
defines serialization and deserialization methods using the binary package, and provides some simple
servers that can be used with these data types.
extra-source-files: Setup.hs README.md
source-repository head
type: git
location: git://github.com/AndreasVoellmy/openflow.git
library
exposed-modules:
Network.Data.Util
Network.Data.Ethernet
Network.Data.Ethernet.EthernetAddress
Network.Data.Ethernet.EthernetFrame
Network.Data.Ethernet.AddressResolutionProtocol
Network.Data.Ethernet.LLDP
Network.Data.IPv4
Network.Data.IPv4.IPAddress
Network.Data.IPv4.IPPacket
Network.Data.IPv4.DHCP
Network.Data.IPv4.UDP
Network.Data.OpenFlow.Port
Network.Data.OpenFlow.Action
Network.Data.OpenFlow.Switch
Network.Data.OpenFlow.Match
Network.Data.OpenFlow.MatchBuilder
Network.Data.OpenFlow.FlowTable
Network.Data.OpenFlow.Statistics
Network.Data.OpenFlow.Error
Network.Data.OpenFlow.Packet
Network.Data.OpenFlow.Messages
Network.Data.OpenFlow.MessagesBinary
Network.Data.OpenFlow
Network.Data.OF13.Message
Network.Data.OF13.Server
ghc-options: -funbox-strict-fields -Wall
hs-source-dirs: src
default-language: Haskell2010
build-depends:
aeson >= 0.7.0.6,
base >= 4.4.0.0 && <= 5,
bimap >= 0.2.4,
binary >= 0.7.0,
bytestring,
containers,
deepseq,
deepseq-generics >= 0.1.1.2,
hashable >= 1.2.1.0,
network >= 2.6.0.2