Custom Query (2447 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (394 - 396 of 2447)

Ticket Resolution Summary Owner Reporter
#2765 Fixed Add support for TLS SNI in httpdownloader Calum
Description

Sites that use cloudflare require TLSv1.2 and use SNI.

From forum: http://forum.deluge-torrent.org/viewtopic.php?f=7&p=218087#p218087

[DEBUG   ] 11:54:50 addtorrentdialog:715 Download failed: [Failure instance: Traceback: <class 'OpenSSL.SSL.Error'>: [('SSL routines', 'SSL23_GET_SERVER_HELLO', 'tlsv1 alert internal error')]
twisted/internet/selectreactor.py:149:_doReadOrWrite
twisted/internet/tcp.py:209:doRead
twisted/internet/tcp.py:215:_dataReceived
twisted/protocols/tls.py:415:dataReceived
--- <exception caught here> ---
twisted/protocols/tls.py:554:_write
OpenSSL/SSL.py:1271:send
OpenSSL/SSL.py:1187:_raise_ssl_error
OpenSSL/_util.py:48:exception_from_error_queue
]

As this is now supported in Twisted >= 14 we can add support.

To verify if this is the issue a simply test without the server name:

openssl s_client -connect www.seo.com:443
> ...
> 139785801238176:error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error:s23_clnt.c:770:
> ...

By adding the server name in the request it will now pass:

openssl s_client -connect www.seo.com:443 -servername seo.com
#2764 Fixed [Scheduler] Prefs page not drawing correctly on OSX Calum
Description

Could be a bug in gtk but possibly in how the prefs page is created...

#2763 Fixed UnboundLocalError: local variable 'info_hash' referenced before assignment Calum
Description

From Fedora: https://bugzilla.redhat.com/show_bug.cgi?id=1223058

Traceback (most recent call last):
  File "/usr/lib/python2.7/site-packages/deluge/ui/gtkui/queuedtorrents.py", line 180, in on_button_add_clicked
    self.liststore.foreach(add_torrent, None)
  File "/usr/lib/python2.7/site-packages/deluge/ui/gtkui/queuedtorrents.py", line 178, in add_torrent
    process_args([torrent_path])
  File "/usr/lib/python2.7/site-packages/deluge/ui/gtkui/ipcinterface.py", line 205, in process_args
    component.get("AddTorrentDialog").add_from_magnets([arg])
  File "/usr/lib/python2.7/site-packages/deluge/ui/gtkui/addtorrentdialog.py", line 258, in add_from_magnets
    if info_hash in self.infos:
UnboundLocalError: local variable 'info_hash' referenced before assignment
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.