Skip to content

Televiska/viska

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Viska

A SIP server/framework built in Rust.

This is a wip, many things will change until it takes the final shape

Why

  • because building a customized modern SIP service on top of kamailio/asterisk/opensips as a developer is not intuitive.
  • because although there are some other servers like routr, but these are not made with development in mind, rather they have configuration that you can change. For instance you can't manipulate incoming or outgoing requests/responses.
  • because although there is nksip it requires you to not only understand how nkserver works but also Erlang and OTP in general
  • because the only real alternative is pjsip and if you are looking to build a SIP service you should probably look into that.

Having worked many years on HTTP frameworks, I really think that we can do something better in SIP.

How

It is built in Rust because that's a low lever, thread safe, performant language that I know well. It's built based on traits+generics, so that anything can be overriden at your will.

The idea is to create a small framework around the basic SIP layers, and then create libraries and implementations based on public traits for each SIP extension or service that is needed (like Registrar, Auth, Push notifications (RFC 8599) etc)

Progress

  • SIP general purpose library/parser with types
  • SDP general purpose library/parser with type
  • Transport layer
    • Udp transport
    • Tcp transport
    • WS transport
  • Transaction layer
    • Invite transaction + impl
    • Non Invite transaction + impl
  • TU layer trait
    • Registrar
    • Capabilities
    • Authentication
    • Dialogs
    • Sessions
      • Initiate a session
      • Modify a session
      • Terminating a session
    • Proxy behavior

Releases

No releases published

Packages

No packages published