Re: [Tutor] Localhost client-server simple ssl socket test program problems

2011-12-15 Thread George Nyoro
3. [TUTOR]Code Deciphering (Calle) >4. Re: [TUTOR]Code Deciphering (Robert Sjoblom) >5. modify values for object derived from datetime.datetime > (rail shafigulin) > > > -------------- > > Message: 1 > Date: Thu, 15 Dec 2011 14:2

Re: [Tutor] Localhost client-server simple ssl socket test program problems

2011-12-15 Thread George Nyoro
>You're trying to connect to the same port on >localhost as a client and a >server? I don't know for certain but I don't >think that should work. >Two computers? -- >Alexander it should work. I did short tutorial on this like a month ago and it worked. The only difference is that in mine it didn'

Re: [Tutor] Localhost client-server simple ssl socket test program problems

2011-12-15 Thread Steven D'Aprano
Can you please be more careful to use plain text and not "rich text" or HTML when posting code? Because it destroys the necessary formatting: Yang Chun-Kai wrote: [...] > My server code: > import socketimport sslbindsocket = > socket.socket()bindsocket.bind(('127.0.0.1', 1234))bindsocket.listen(5

Re: [Tutor] Localhost client-server simple ssl socket test program problems

2011-12-15 Thread Alexander
2011/12/15 Yang Chun-Kai > Hello,everyone!! > > I am writing a simple ssl client-server test program on my personal laptop. > > And I encounter some problems with my simple programs. > > Please give me some helps. > > --

[Tutor] Localhost client-server simple ssl socket test program problems

2011-12-15 Thread Yang Chun-Kai
Hello,everyone!! I am writing a simple ssl client-server test program on my personal laptop. And I encounter some problems with my simple programs. Please give me some helps.---