aboutsummaryrefslogtreecommitdiff
path: root/RSSDP/SsdpConstants.cs
blob: ab0ecb0f7eb7306562c34eb4cde31c478e16a31f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;

namespace Rssdp.Infrastructure
{
    /// <summary>
    /// Provides constants for common values related to the SSDP protocols.
    /// </summary>
    public static class SsdpConstants
    {

        /// <summary>
        /// Multicast IP Address used for SSDP multicast messages. Values is 239.255.255.250.
        /// </summary>
        public const string MulticastLocalAdminAddress = "239.255.255.250";
        /// <summary>
        /// The UDP port used for SSDP multicast messages. Values is 1900.
        /// </summary>
        public const int MulticastPort = 1900;
        /// <summary>
        /// The default multicase TTL for SSDP multicast messages. Value is 4.
        /// </summary>
        public const int SsdpDefaultMulticastTimeToLive = 4;

        internal const string MSearchMethod = "M-SEARCH";

        internal const string SsdpDiscoverMessage = "ssdp:discover";
        internal const string SsdpDiscoverAllSTHeader = "ssdp:all";

        internal const string SsdpDeviceDescriptionXmlNamespace = "urn:schemas-upnp-org:device-1-0";

        /// <summary>
        /// Default buffer size for receiving SSDP broadcasts. Value is 8192 (bytes).
        /// </summary>
        public const int DefaultUdpSocketBufferSize = 8192;
        /// <summary>
        /// The maximum possible buffer size for a UDP message. Value is 65507 (bytes).
        /// </summary>
        public const int MaxUdpSocketBufferSize = 65507; // Max possible UDP packet size on IPv4 without using 'jumbograms'.

        /// <summary>
        /// Namespace/prefix for UPnP device types. Values is schemas-upnp-org.
        /// </summary>
        public const string UpnpDeviceTypeNamespace = "schemas-upnp-org";
        /// <summary>
        /// UPnP Root Device type. Value is upnp:rootdevice.
        /// </summary>
        public const string UpnpDeviceTypeRootDevice = "upnp:rootdevice";
        /// <summary>
        /// The value is used by Windows Explorer for device searches instead of the UPNPDeviceTypeRootDevice constant.
        /// Not sure why (different spec, bug, alternate protocol etc). Used to enable Windows Explorer support.
        /// </summary>
        public const string PnpDeviceTypeRootDevice = "pnp:rootdevice";
        /// <summary>
        /// UPnP Basic Device type. Value is Basic.
        /// </summary>
        public const string UpnpDeviceTypeBasicDevice = "Basic";

        internal const string SsdpKeepAliveNotification = "ssdp:alive";
        internal const string SsdpByeByeNotification = "ssdp:byebye";

        internal const int UdpResendCount = 3;

    }
}