Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 Python 代码:
import urllib2 url = 'http://server-A.com/form.php' res = urllib2.urlopen(url) print res.read()
我想告诉它使用我的 TCP 方法在传输层发送它,这可能吗?我真正的问题是:我们如何在两个网络层中编写代码?
我的交通工具类似于此链接。
.HTTP 始终使用 TCP。
HTTPU 使用 UDP,但我看到它仅用于 SSTP,我不知道其他应用程序是否使用它。
urllib2 在内部使用 httplib 打开,我找不到任何接受服务器打开套接字的函数,所以我猜答案是:不,你不能