Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
msantos committed Jul 14, 2012
1 parent b013527 commit b0cc982
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ epcap includes a small example program called sniff.
## Changes

0.05: The packet message format has changed and is now documented.
0.06: epcap doesn't register itself, so multiple instances can be run.

## QUICK SETUP

Expand Down Expand Up @@ -34,8 +35,8 @@ epcap includes a small example program called sniff.

## USAGE

epcap:start() -> pid()
epcap:start(Args) -> pid()
epcap:start() -> {ok, pid()}
epcap:start(Args) -> {ok, pid()}

Types Args = [Options]
Options = {chroot, string()} | {group, string()} | {interface, string()} | {promiscuous, boolean()} |
Expand Down Expand Up @@ -100,3 +101,6 @@ epcap includes a small example program called sniff.

* Alexey Larin
* support of devices without ipwq

* Artem Teslenko
* allow listening on different interfaces
2 changes: 1 addition & 1 deletion src/epcap.app.src
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{application, epcap,
[{description, "libpcap port"},
{vsn, "0.05"}]}.
{vsn, "0.06"}]}.

0 comments on commit b0cc982

Please sign in to comment.