tags:

views:

220

answers:

1

I am creating an application where I need to implement SIP protocol in .NET. We have Client-Server setup where client keeps on sending keep alive message to server. We can only use SIP protocol or any other protocol which is support with ICE.

Could some one help me in implementing this. I don't have much idea about these protocols but I know .net very well. Some sample code would be of great help.

A: 

draft-ief-sip-outbound is what you're looking for. This draft describes keep-alive techniques in section 3.5: you can use CRLF pairs for connection-oriented transports (like TCP), or STUN for connectionless transports (like UDP).

Frank Shearar