Activity for Scott Grayban

  • Scott Grayban Scott Grayban posted a comment on ticket #190

    So I had a short look at this and it seems I'll have to add import ssl in grabbers.py and set the Protocol to use PROTOCOL_TLSv1 In short something like this.... import socket import ssl # SET VARIABLES packet, reply = "<packet>SOME_DATA</packet>", "" HOST, PORT = 'XX.XX.XX.XX', 4434 # CREATE SOCKET sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(10) # WRAP SOCKET wrappedSocket = ssl.wrap_socket(sock, ssl_version=ssl.PROTOCOL_TLSv1, ciphers="ADH-AES256-SHA") # CONNECT AND...

  • Scott Grayban Scott Grayban modified a comment on ticket #190

    I was one of the original developers when it was called iPodder but it seems the only thing that needs to be updated are the url python libararies urllib2.pyc, httplib.pyc, socket.pyc and maybe feedparser.pyc I haven't messed with this code in years but I'll have a whack at it in the nexxt few weeks.

  • Scott Grayban Scott Grayban modified a comment on ticket #190

    I was one of the original developers when it was called iPodder but it seems the only thing that needs to be updated are the url python libararies urllib2.pyc, httplib.pyc and maybe feedparser.pyc I haven't messed with this code in years but I'll have a whack at it in the nexxt few weeks.

  • Scott Grayban Scott Grayban posted a comment on ticket #190

    I was one of the original developers when it was called iPodder but it seems the only think that needs to be updated are the url python libararies urllib2.pyc, httplib.pyc and maybe feedparser.pyc I haven't messed with this code in years but I'll have a whack at it in the nexxt few weeks.

1