diff options
author | BenHamlin <> | 2017-03-29 02:42:00 (GMT) |
---|---|---|
committer | hdiff <hdiff@hdiff.luite.com> | 2017-03-29 02:42:00 (GMT) |
commit | 38168bfd4d842b98c256c06bdbfd0194c49f5f4c (patch) | |
tree | 208368e53037f8377bf5e2c87ca2d04aab0723d2 | |
parent | 34dd81301179da132dd2f713e0446de13db1f948 (diff) |
version 0.1.0.40.1.0.4
-rw-r--r-- | ChangeLog.md | 7 | ||||
-rw-r--r-- | rtnetlink.cabal | 2 | ||||
-rw-r--r-- | src/System/Socket/Protocol/RTNetlink.hsc | 4 |
3 files changed, 7 insertions, 6 deletions
diff --git a/ChangeLog.md b/ChangeLog.md index a736caf..597c355 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,11 @@ # Revision history for rtnetlink -## 0.1.0.2 -- 2017-03-27 +## 0.1.0.4 -- 2017-03-28 + +* Remove some obscure rtnetlink groups that aren't in `linux/rtnetlink.h` on Trusty. +* Add `stack.yaml`. + +## 0.1.0.3 -- 2017-03-27 * Provide support for `base-4.8.*` by fixing `IsString` ambiguity in `LinkEther`. diff --git a/rtnetlink.cabal b/rtnetlink.cabal index 6334eb2..a0f8162 100644 --- a/rtnetlink.cabal +++ b/rtnetlink.cabal @@ -1,5 +1,5 @@ name: rtnetlink -version: 0.1.0.3 +version: 0.1.0.4 synopsis: Manipulate network devices, addresses, and routes on Linux description: A high-level, extensible, pure Haskell interface to the ROUTE_NETLINK subsystem of netlink for manipulating diff --git a/src/System/Socket/Protocol/RTNetlink.hsc b/src/System/Socket/Protocol/RTNetlink.hsc index 89b8b6d..a32b616 100644 --- a/src/System/Socket/Protocol/RTNetlink.hsc +++ b/src/System/Socket/Protocol/RTNetlink.hsc @@ -53,8 +53,6 @@ data RTNetlinkGroup | RTNetlinkGroupIPv4Netconf | RTNetlinkGroupIPv6Netconf | RTNetlinkGroupMDB - | RTNetlinkGroupMPLSRoute - | RTNetlinkGroupNSID deriving (Read, Show, Eq) instance NetlinkGroup RTNetlinkGroup where netlinkGroupNumber g = shift 1 $ bit g - 1 @@ -85,5 +83,3 @@ bit RTNetlinkGroupDCB = #const RTNLGRP_DCB bit RTNetlinkGroupIPv4Netconf = #const RTNLGRP_IPV4_NETCONF bit RTNetlinkGroupIPv6Netconf = #const RTNLGRP_IPV6_NETCONF bit RTNetlinkGroupMDB = #const RTNLGRP_MDB -bit RTNetlinkGroupMPLSRoute = #const RTNLGRP_MPLS_ROUTE -bit RTNetlinkGroupNSID = #const RTNLGRP_NSID |