V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
617450941
V2EX  ›  Python

python socket 客户端端口问题

  •  
  •   617450941 · 2015-11-02 16:22:53 +08:00 · 2551 次点击
    这是一个创建于 3104 天前的主题,其中的信息可能已经有所发展或是发生改变。
    就是写 socket 时 怎么定义客户端的端口 现在在服务器端看到客户端连接上来的端口都是随机的 想固定客户端的端口 该怎么写
    julyclyde
        1
    julyclyde  
       2015-11-02 17:42:26 +08:00
    就是随机的
    不能固定
    mulog
        2
    mulog  
       2015-11-02 18:15:50 +08:00
    先 bind

    sock.bind(("client_ip", client_port))
    sock.connect(("server_ip", server_port))
    sujin190
        3
    sujin190  
       2015-11-02 20:44:25 +08:00
    @mulog 还可以这样?学习了
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2323 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 71ms · UTC 12:40 · PVG 20:40 · LAX 05:40 · JFK 08:40
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.