Source code for pyams_utils.protocol.tcp

#
# Copyright (c) 2008-2018 Thierry Florac <tflorac AT ulthar.net>
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#

"""PyAMS_utils.protocol.tcp module

This module only provides a single function, used to know if a given TCP port is already in use
"""

import socket

__docformat__ = 'restructuredtext'


[docs]def is_port_in_use(port, hostname='localhost'): """Check if given port is already used locally""" with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock: return sock.connect_ex((hostname, port)) == 0