An open API service indexing awesome lists of open source software.

https://github.com/lwahlmeier/sip-ping

A simple SIP OPTIONS Ping checking for sip services.
https://github.com/lwahlmeier/sip-ping

healthcheck sip websockets

Last synced: 5 months ago
JSON representation

A simple SIP OPTIONS Ping checking for sip services.

Awesome Lists containing this project

README

          

# sip-ping

Send a SIP OPTIONS request to a server over ws/wss or udp/tcp/tls.

## examples

### WSS:
```bash
sip-ping -addr wss://some.sip.server.com:443
```

### UDP:
```bash
sip-ping -addr udp://some.sip.server.com:5060
```

## install

Assuming you have [setup Go](https://golang.org/doc/install):

```bash
go get github.com/lwahlmeier/sip-ping
```

## building

Uses docker for isolated/repeatable binary builds.

```bash
make build
```