forked from ickymettle/ruby-pcap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
47 lines (30 loc) · 1.16 KB
/
README
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
* Introduction
ruby-pcap is a ruby extension to LBL libpcap (Packet Capture library).
This library also includes classes to access TCP/IP header.
* Installation
Requirements:
- ruby-1.8.x or ruby-1.9.2
- libpcap (http://www.tcpdump.org/)
Compile:
If ruby supports dynamic link of extension module on your OS,
following commands will install ruby-pcap.
rake build
sudo gem install pkg/pcap*.gem
* Usage
See the documentation under the directory 'doc'.
Directory 'examples' contains some simple scripts.
* Author
Masaki Fukushima <[email protected]>
* Modifications by
Andrew Hobson <[email protected]>
* OS X and Ruby 1.9.2 support by
Tim Jarratt <[email protected]>
* Performance Improvements and other great contributes by
Ilya Maykov
ruby-pcap is copyrighted free software by Masaki Fukushima.
You can redistribute it and/or modify it under the terms of
the GPL (GNU GENERAL PUBLIC LICENSE). See COPYING file about GPL.
THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. See the GPL for
more details.