"""These are the standard ports for HTTP and HTTPS, etc."""
__docformat__ = "restructuredtext"
# Created: Thu Apr 28 00:52:56 PDT 2005
# Author: Shannon -jj Behrens
# Email: jjinux@users.sourceforge.net
#
# Copyright (c) Shannon -jj Behrens. All rights reserved.
HTTP_PORT = 80
HTTPS_PORT = 443
MIN_PORT = 1
MAX_PORT = 2**16
|