Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ uas(block=False) # returns a `pysipp.launch.PopenRunner` instance by default
uac() # run client synchronously
```

## Authentication
When using the `[authentication]` [sipp keyword](https://sipp.readthedocs.io/en/latest/scenarios/keywords.html#authentication)
in scenarios, providing the credentials can be done with the
`auth_username` and `auth_password` arguments, for example:

```python
pysipp.client(auth_username='sipp', auth_password='sipp-pass')
```

## Multiple Agents
For multi-UA orchestrations we can use a `pysipp.scenario`.
The scenario from above is the default agent configuration:
Expand Down
1 change: 1 addition & 0 deletions pysipp/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ def todict(self):
# SIP vars
'-cid_str {cid_str} ',
'-base_cseq {base_cseq} ',
'-au {auth_username} ',
'-ap {auth_password} ',
# load settings
'-r {rate} ',
Expand Down