Click here to Skip to main content
15,898,035 members
Articles / Programming Languages / C#

STUN Client

Rate me:
Please Sign up or sign in to vote.
4.83/5 (36 votes)
20 Apr 2007CPOL 331.5K   14.9K   85  
STUN client C# implementation with sample application
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;

namespace LumiSoft.Net.SIP.Stack
{
    /// <summary>
    /// This class represents SIP end point info, what includes protocol and IP end point.
    /// Normally this SIP end point info is used to find right UDP socket or TCP onnection.
    /// </summary>
    public class SIP_EndPointInfo
    {
        private string     m_Transport = "UDP";
        private IPEndPoint m_pEndPoint = null;

        /// <summary>
        /// Default constructor.
        /// </summary>
        /// <param name="transport">Transport.</param>
        /// <param name="endPoint">IP end point.</param>
        /// <exception cref="ArgumentException">Is raised when any of arguments has invalid value.</exception>
        public SIP_EndPointInfo(string transport,IPEndPoint endPoint)
        {
            if(string.IsNullOrEmpty(transport)){
                throw new ArgumentException("Argumnet 'transport' value may not be null or empty !");
            }
            if(endPoint == null){
                throw new ArgumentException("Argument 'endPoint' value may not be null !");
            }

            m_Transport = transport;
            m_pEndPoint = endPoint;
        }


        #region Properties Implementation

        /// <summary>
        /// Gets transport.
        /// </summary>
        public string Transport
        {
            get{ return m_Transport; }
        }

        /// <summary>
        /// Gets IP end point.
        /// </summary>
        public IPEndPoint EndPoint
        {
            get{ return m_pEndPoint; }
        }

        #endregion

    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Estonia Estonia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions