https://github.com/bmarwell/sipper
A SIP library which doesn't suck
https://github.com/bmarwell/sipper
Last synced: 3 months ago
JSON representation
A SIP library which doesn't suck
- Host: GitHub
- URL: https://github.com/bmarwell/sipper
- Owner: bmarwell
- License: apache-2.0
- Created: 2023-12-28T13:13:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-14T14:17:29.000Z (3 months ago)
- Last Synced: 2025-03-14T15:28:58.732Z (3 months ago)
- Language: Java
- Size: 149 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 13
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= SIPper
:toc: macroA SIP (Session Initiation Protocol for soft phones) library for Java 21+ which doesn't suck (pun intended).
image:https://github.com/bmarwell/sipper/actions/workflows/maven-build.yml/badge.svg[Maven CI,link=https://github.com/bmarwell/sipper/actions/workflows/maven-build.yml]
image:https://img.shields.io/badge/License-Apache_2.0-blue.svg[License,link=https://opensource.org/licenses/Apache-2.0]
image:https://codecov.io/gh/bmarwell/sipper/graph/badge.svg?token=W70UTK1O1V[codecov.io,link=https://codecov.io/gh/bmarwell/sipper]
image:https://img.shields.io/badge/renovate-enabled-brightgreen.svg[Renovate,link=https://renovatebot.com]toc::[]
== Development status
There is a basic set of interfaces in the API.
Using the API and a configuration, it is possible to connect (REGISTER) and disconnect (UNREGISTER aka REGISTER with Expires: 0).
Incoming calls are being detected, but not yet routed to the SipEventHandler class.There is basically no test yet, except a few which are being used for development.
== API stability
None yet, goal is to have good stability before 0.4.0.
== Implementation details
This library will make use of the Java 6+ Service Loader mechanisms.
As a developer, you can code against the API only and have only the API in your class path whilst compiling.
But for the runtime, the implementation will be needed as well.