13 lines
305 B
Python
13 lines
305 B
Python
# -*- coding: utf-8 -*-
|
|
from collections import namedtuple
|
|
|
|
|
|
__author__ = "Grant Hulegaard"
|
|
__copyright__ = "Copyright (C) Nginx, Inc. All rights reserved."
|
|
__license__ = ""
|
|
__maintainer__ = "Grant Hulegaard"
|
|
__email__ = "grant.hulegaard@nginx.com"
|
|
|
|
|
|
INET_IPV4 = namedtuple('INET_IPV4', ('host', 'port'))
|