Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/matsumotory/mruby-netlink

libnetlink binding for mruby
https://github.com/matsumotory/mruby-netlink

Last synced: about 2 months ago
JSON representation

libnetlink binding for mruby

Awesome Lists containing this project

README

        

# Netlink class for mruby
mruby netlink class

## install by mrbgems
- add conf.gem line to `build_config.rb`
```ruby
MRuby::Build.new do |conf|

# ... (snip) ...

conf.gem :git => 'https://github.com/matsumoto-r/mruby-netlink.git'
end
```

## example

```ruby
n = Netlink.new "eth1"

n.down
sleep 5
n.up

n.close
```

# License
under the MIT License:

* http://www.opensource.org/licenses/mit-license.php