usage: Update create_session parameters to new API

This commit is contained in:
Heikki Tampio 2024-01-19 09:20:59 +02:00
parent 9853162d58
commit 1005d9d619
1 changed files with 3 additions and 2 deletions

View File

@ -20,10 +20,11 @@ Next, you will use the uvgrtp::context object to create uvgrtp::session objects.
```
uvgrtp::session *sess = ctx.create_session("10.10.10.2");
```
or 2) specify both remote and local addresses:
or 2) specify both local and remote addresses as a pair:
```
uvgrtp::session *sess = ctx.create_session("10.10.10.2", "10.10.10.3");
std::pair<std::string, std::string> addresses("10.10.10.3", "10.10.10.2");
uvgrtp::session *sess = ctx.create_session(addresses);
```
Mixing IPv4 and IPv6 addresses is not possible.