Skip to content

Commit

Permalink
Updates documentation regarding the addition of an IP param to :stun_…
Browse files Browse the repository at this point in the history
…listener:add_listener/4
  • Loading branch information
JesseHerrick committed Sep 15, 2020
1 parent e53a1e8 commit 25b9da5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ You can trigger build with:

The following sequence describe a STUN establishment.

First, start the application and stun listener:
First, start the application and stun listener at 127.0.0.1:

```
1> application:start(stun).
ok
2> stun_listener:add_listener(3478, udp, []).
2> stun_listener:add_listener({127, 0, 0, 1}, 3478, udp, []).
ok
```

Expand Down

0 comments on commit 25b9da5

Please sign in to comment.