/*
This file is part of PacketDotNet
PacketDotNet is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
PacketDotNet is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with PacketDotNet. If not, see .
*/
/*
* Copyright 2009 Chris Morgan
*/
namespace PacketDotNet
{
/// Code constants for ip ports.
public enum IpPort : ushort
{
#pragma warning disable 1591
Echo = 7,
DayTime = 13,
FtpData = 20,
Ftp = 21,
///
/// Secure shell
///
Ssh = 22,
///
/// Terminal protocol
///
Telnet = 23,
///
/// Simple mail transport protocol
///
Smtp = 25,
Time = 37,
Whois = 63,
Tftp = 69,
Gopher = 70,
Finger = 79,
///
/// Hyper text transfer protocol
///
Http = 80,
///
/// Same as Http
///
Www = 80,
Kerberos = 88,
Pop3 = 110,
Ident = 113,
Auth = 113,
///
/// Secure ftp
///
Sftp = 115,
///
/// Network time protocol
///
Ntp = 123,
Imap = 143,
///
/// Simple network management protocol
///
Snmp = 161,
PrivilegedPortLimit = 1024
#pragma warning restore 1591
}
}