1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-04 02:36:59 +00:00
seahub/thirdpart/urlobject/ports.py
2012-07-24 22:13:07 +08:00

26 lines
459 B
Python

"""Default port numbers for the URI schemes supported by urlparse."""
DEFAULT_PORTS = {
'ftp': 21,
'gopher': 70,
'hdl': 2641,
'http': 80,
'https': 443,
'imap': 143,
'mms': 651,
'news': 2009,
'nntp': 119,
'prospero': 191,
'rsync': 873,
'rtsp': 554,
'rtspu': 554,
'sftp': 115,
'shttp': 80,
'sip': 5060,
'sips': 5061,
'snews': 2009,
'svn': 3690,
'svn+ssh': 22,
'telnet': 23,
}