Re: [Twisted-Python] Knowing end of packet

2009-09-28 Thread gary clark
Marvelous. Much appreciated. "from twisted.protocols.basic import NetstringReceiver" Thanks, Garyc --- On Mon, 9/28/09, Glyph Lefkowitz wrote: > From: Glyph Lefkowitz > Subject: Re: [Twisted-Python] Knowing end of packet > To: "Twisted general discussion" >

Re: [Twisted-Python] Knowing end of packet

2009-09-28 Thread Glyph Lefkowitz
On Mon, Sep 28, 2009 at 7:15 AM, gary clark wrote: > Hello, > > I am sending a large amount of data to a twisted server. I want to know how > the protocol class knows that no more data is to be received. > > I dont pass the length of the data in the packet, hence I'm looking for a > termination f

[Twisted-Python] Knowing end of packet

2009-09-28 Thread gary clark
Hello, I am sending a large amount of data to a twisted server. I want to know how the protocol class knows that no more data is to be received. I dont pass the length of the data in the packet, hence I'm looking for a termination field in the packet.Like . I did see a logging class but not su