本文整理汇总了Python中socket.socket.accept函数的典型用法代码示例。如果您正苦于以下问题:Python accept函数的具体用法?Python accept怎么用?Python accept使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了accept函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: convProgress
def convProgress(socket):
socket.listen(0)
conn, addr = socket.accept()
while 1:
data = conn.recv(4096)
if not data: break
print data,
sys.stderr.write("Progress thread exiting!!")
socket.close()
开发者ID:Spearl,项目名称:video-conversion-daemon,代码行数:9,代码来源:rpcconvclient.py
示例2: accept
def accept(self):
"""Accepts a new connection from a remote client, and returns
a tuple containing that new connection wrapped with a server-side
SSL channel, and the address of the remote client."""
newsock, addr = socket.accept(self)
try:
return (SSLSocket(newsock, keyfile=self.keyfile, certfile=self.certfile, server_side=True, cert_reqs=self.cert_reqs, ssl_version=self.ssl_version, ca_certs=self.ca_certs, ciphers=self.ciphers, do_handshake_on_connect=self.do_handshake_on_connect, suppress_ragged_eofs=self.suppress_ragged_eofs), addr)
except socket_error as e:
newsock.close()
raise e
开发者ID:webiumsk,项目名称:WOT-0.9.14-CT,代码行数:10,代码来源:ssl.py
示例3: accept
def accept(self):
"""Accepts a new connection from a remote client, and returns
a tuple containing that new connection wrapped with a server-side
SSL channel, and the address of the remote client."""
newsock, addr = socket.accept(self)
newsock = self.context.wrap_socket(newsock,
do_handshake_on_connect=self.do_handshake_on_connect,
suppress_ragged_eofs=self.suppress_ragged_eofs,
server_side=True)
return newsock, addr
开发者ID:alej0varas,项目名称:pythones,代码行数:11,代码来源:ssl.py
示例4: accept
def accept(self):
"""Accepts a new connection from a remote client, and returns
a tuple containing that new connection wrapped with a server-side
SSL channel, and the address of the remote client."""
newsock, addr = socket.accept(self)
return (SSLSocket(newsock,
keyfile=self.keyfile,
certfile=self.certfile),
addr)
开发者ID:maximerobin,项目名称:Ufwi,代码行数:11,代码来源:ssl.py
示例5: accept
def accept(self):
"""
Accepts a new connection from a remote client, and returns a tuple
containing that new connection wrapped with a server-side secure
channel, and the address of the remote client.
"""
if not self.server_side:
raise ValueError("can't accept in client-side mode")
newsock, addr = socket.accept(self)
newsock = self.context.wrap_socket(
newsock,
do_handshake_on_connect=self.do_handshake_on_connect,
suppress_ragged_eofs=self.suppress_ragged_eofs,
server_side=True)
return newsock, addr
开发者ID:NickolasLapp,项目名称:wolfssl,代码行数:17,代码来源:__init__.py
示例6: accept
def accept(self):
(newsock, addr) = socket.accept(self)
newsock = self.context.wrap_socket(newsock, do_handshake_on_connect=self.do_handshake_on_connect, suppress_ragged_eofs=self.suppress_ragged_eofs, server_side=True)
return (newsock, addr)
开发者ID:johndpope,项目名称:sims4-ai-engine,代码行数:4,代码来源:ssl.py
示例7: accept
def accept(self):
newsock, addr = socket.accept(self)
return (SSLSocket(newsock, keyfile=self.keyfile, certfile=self.certfile, server_side=True, cert_reqs=self.cert_reqs, ssl_version=self.ssl_version, ca_certs=self.ca_certs, ciphers=self.ciphers, do_handshake_on_connect=self.do_handshake_on_connect, suppress_ragged_eofs=self.suppress_ragged_eofs), addr)
开发者ID:connoryang,项目名称:dec-eve-serenity,代码行数:3,代码来源:ssl.py
示例8: server_port
from django.conf import settings
from utils import sendMsg, recvMsg, abnormalShutdown
def server_port():
return 12322
if __name__ == "__main__":
# Create socket object
socket = socket(AF_INET, SOCK_STREAM)
# Bind socket to localhost on defined port
socket.bind(('', server_port()))
# Start listening
socket.listen(0)
while True:
# Accept connections while server is alive
conn, address = socket.accept()
# Print connection information
#print("Connection received from client address " + str(address[0]) + " on port " + str(address[1]))
# Try to receive incoming message and starting time
incomingMsg = recvMsg(conn)
# Print message from client
#print("Received from client: " + str(incomingMsg))
ser = serial.Serial(settings.TTY_PORT, '9600', timeout=5)
time.sleep(2)
try:
ser.write(str(incomingMsg))
except:
开发者ID:rlacherksu,项目名称:ccasp,代码行数:31,代码来源:server.py
注:本文中的socket.socket.accept函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论