Changeset 64453 in webkit


Ignore:
Timestamp:
Aug 2, 2010 3:13:36 AM (14 years ago)
Author:
ukai@chromium.org
Message:

2010-08-02 Fumitoshi Ukai <ukai@chromium.org>

Reviewed by Kent Tamura.

WebSocket server should start with SO_REUSEADDR
https://bugs.webkit.org/show_bug.cgi?id=43329

Pulls in pywebsocket-0.5.2.
pywebsocket-0.5.2 includes a small fix to start server with SO_REUSE_ADDR.
http://code.google.com/p/pywebsocket/source/detail?r=273

  • Scripts/webkitpy/thirdparty/init.py: Bump pywebsocket version
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r64451 r64453  
     12010-08-02  Fumitoshi Ukai  <ukai@chromium.org>
     2
     3        Reviewed by Kent Tamura.
     4
     5        WebSocket server should start with SO_REUSEADDR
     6        https://bugs.webkit.org/show_bug.cgi?id=43329
     7
     8        Pulls in pywebsocket-0.5.2.
     9        pywebsocket-0.5.2 includes a small fix to start server with SO_REUSE_ADDR.
     10        http://code.google.com/p/pywebsocket/source/detail?r=273
     11
     12        * Scripts/webkitpy/thirdparty/__init__.py: Bump pywebsocket version
     13
    1142010-08-01  Kent Tamura  <tkent@chromium.org>
    215
  • trunk/WebKitTools/Scripts/webkitpy/thirdparty/__init__.py

    r64332 r64453  
    9494pywebsocket_dir = os.path.join(autoinstalled_dir, "pywebsocket")
    9595installer = AutoInstaller(target_dir=pywebsocket_dir)
    96 installer.install(url="http://pywebsocket.googlecode.com/files/mod_pywebsocket-0.5.1.tar.gz",
    97                   url_subpath="pywebsocket-0.5.1/src/mod_pywebsocket")
     96installer.install(url="http://pywebsocket.googlecode.com/files/mod_pywebsocket-0.5.2.tar.gz",
     97                  url_subpath="pywebsocket-0.5.2/src/mod_pywebsocket")
    9898
    9999readme_path = os.path.join(autoinstalled_dir, "README")
Note: See TracChangeset for help on using the changeset viewer.