blob: 01ceb1b25d943eb1851877424d919e316a580c57 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
namespace Org.BouncyCastle.Tls
{
/// <summary>RFC 2246</summary>
/// <remarks>
/// Note that the values here are implementation-specific and arbitrary. It is recommended not to depend on the
/// particular values(e.g.serialization).
/// </remarks>
public abstract class ConnectionEnd
{
public const int server = 0;
public const int client = 1;
}
}
|