Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/matsumotory/mruby-netlink
- Owner: matsumotory
- Created: 2013-07-07T12:14:36.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-09T07:14:41.000Z (almost 11 years ago)
- Last Synced: 2024-10-18T18:24:32.466Z (3 months ago)
- Language: C
- Size: 164 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.upn.close
```# License
under the MIT License:* http://www.opensource.org/licenses/mit-license.php