こんにちは、ユーザーが url を入力するためのスクリプトを作成しています。url を確認し、url が有効かどうかをユーザーに知らせる必要があります。意図的に間違った url を入力すると、gaierror のエラー メッセージが表示されますが、エラーを入力しました私のプログラムが正常な終了のように「接続できません」というメッセージを受け取るように、ここでコードを処理します。ソケットプログラミングで.私は何か間違ったことをしていると思います.誰でもここで私を助けてくれませんか.
#!/usr/bin/env python
import socket
import sys
def hello(c):
t=c
port = 80
slash=t.split("/")
basename="/".join(slash[2:3])
pathname="/"+"/".join(slash[3:])
sock=None
for res in socket.getaddrinfo(basename, port, socket.AF_UNSPEC, socket.SOCK_STREAM):
af, socktype, proto, canonname, sa = res
try:
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
except socket.error:
sock= None
continue
try:
sock.connect((basename, port))
except socket.error:
sock= None
continue
if sock is None:
print 'could not open socket'###I dont get this printed
sys.exit(0)
sock.send("HEAD %s HTTP/1.0\r\n\r\n" % pathname)
l=sock.recv(12)
return l
sys.exit(1)
sock.close()
``I call the hello function from here``
k= hello("https://mail.yah")`purposefully wrong to verify error handle
print k
newsplit=k.split()
print newsplit
insplit=eval(newsplit[1])
print insplit
if insplit==404:
print "bad"
else:
print "ok"
以下のエラーメッセージが表示されます。
Traceback (most recent call last):
File "C:/myserver/cgi-bin/domain.py", line 40, in <module>
k= hello("https://mail.yah")
"C:/myserver/cgi-bin/domain.py", line 13, in hello
for res in socket.getaddrinfo(basename, port, socket.AF_UNSPEC, socket.SOCK_STREAM):
gaierror: [Errno 11004] getaddrinfo failed