Skip to content

gendalf90/Datagrammer.Sip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Datagrammer.Sip

If you want to know more about Sip protocol please read this wiki.

Getting started

Install from NuGet:

Install-Package Datagrammer.Sip

Use namespace

using Datagrammer.Sip;
using Sip.Protocol;

Initialization

Building message bytes:

var sipMessageBytes = new SipBuilderStep().SetRequestHeader("REGISTER", "sip:ss2.wcom.com")
                                          .AddHeader("Via", "SIP/2.0/UDP there.com:5060;branch=wsodil7987kjh")
                                          .AddHeader("From", "SomeGuy <sip:User@there.com>")
                                          .AddHeader("Content-Length", "3")
                                          .SetBody(new byte[] { 1, 2, 3 })
                                          .Build();

License

This project is licensed under the MIT License - see the LICENSE file for details

About

SIP support for Datagrammer

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages