- Timestamp:
- 02/07/15 19:18:51 (11 years ago)
- Location:
- etherws/trunk
- Files:
- 
          - 4 edited
 
 - 
          LICENSE (modified) (1 diff)
- 
          README.rst (modified) (1 diff)
- 
          etherws.py (modified) (2 diffs)
- 
          setup.py (modified) (2 diffs)
 
Legend:
- Unmodified
- Added
- Removed
- 
        etherws/trunk/LICENSEr274 r276 1 Copyright (c) 2012-201 4, Atzm WATANABE <atzm@atzm.org>1 Copyright (c) 2012-2015, Atzm WATANABE <atzm@atzm.org> 2 2 All rights reserved. 3 3 
- 
        etherws/trunk/README.rstr274 r276 202 202 History 203 203 ======= 204 1.3 205 - fix listport bug on tornado 4.0.x 206 204 207 1.2 (2014-12-29 JST) 205 208 - verification of controller SSL certificate support 
- 
        etherws/trunk/etherws.pyr274 r276 11 11 # 12 12 # =========================================================================== 13 # Copyright (c) 2012-201 4, Atzm WATANABE <atzm@atzm.org>13 # Copyright (c) 2012-2015, Atzm WATANABE <atzm@atzm.org> 14 14 # All rights reserved. 15 15 # … … 419 419 @property 420 420 def target(self): 421 return ':'.join(str(e) for e in self.request.connection.address) 421 conn = self.request.connection 422 if hasattr(conn, 'address'): 423 return ':'.join(str(e) for e in conn.address) 424 if hasattr(conn, 'context'): 425 return ':'.join(str(e) for e in conn.context.address) 426 return str(conn) 422 427 423 428 def open(self): 
- 
        etherws/trunk/setup.pyr274 r276 3 3 # 4 4 # =========================================================================== 5 # Copyright (c) 2012-201 4, Atzm WATANABE <atzm@atzm.org>5 # Copyright (c) 2012-2015, Atzm WATANABE <atzm@atzm.org> 6 6 # All rights reserved. 7 7 # … … 37 37 setup( 38 38 name='etherws', 39 version='1. 2',39 version='1.3', 40 40 description='Ethernet over WebSocket', 41 41 long_description=longdesc, 
Note: See TracChangeset
          for help on using the changeset viewer.
      
