Changeset 58 for remote_control
- Timestamp:
- 06/21/10 16:06:07 (12 years ago)
- Location:
- remote_control
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
remote_control/puzzlebox_brainstorms_client_thinkgear.py
r57 r58 308 308 309 309 # Use ThinkGear authentication 310 ## reactor.callWhenRunning( \ 311 ## thinkgear_client.authorize_and_send_parameters, \ 312 ## thinkgear_parameters, \ 313 ## authorization_request) 314 315 # Do not use ThinkGear authentication 316 authorization_request = None 310 317 reactor.callWhenRunning( \ 311 thinkgear_client. authorize_and_send_parameters, \318 thinkgear_client.send_parameters, \ 312 319 thinkgear_parameters, \ 313 320 authorization_request) 314 315 # Do not use ThinkGear authentication316 ## authorization_request = None317 ## reactor.callWhenRunning( \318 ## thinkgear_client.send_parameters, \319 ## thinkgear_parameters, \320 ## authorization_request)321 321 322 322 -
remote_control/puzzlebox_brainstorms_server_thinkgear.py
r57 r58 11 11 # Last Update: 2010.06.21 12 12 # 13 #####################################################################14 # To do:15 # - Server starts session sending data stream per command received16 # instead of once per connection17 13 ##################################################################### 18 14 … … 341 337 print response 342 338 343 reactor.callLater(MESSAGE_FREQUENCY_TIMER, \344 self.send_response, \345 self.factory.status_packet)339 reactor.callLater(MESSAGE_FREQUENCY_TIMER, \ 340 self.send_response, \ 341 self.factory.status_packet) 346 342 347 343
Note: See TracChangeset
for help on using the changeset viewer.