std.socket.TcpSocket.flush

2010-07-26 Thread Rory Mcguire
Hi, What is one supposed to use to flush a TcpSocket. flush doesn't seem to exist, should I really just use the c function? -Rory

Re: std.socket.TcpSocket.flush

2010-07-26 Thread Heywood Floyd
Rory Mcguire Wrote: > Hi, > > What is one supposed to use to flush a TcpSocket. > > flush doesn't seem to exist, should I really just use the c function? > > -Rory Was in a similar situation, found this: http://stackoverflow.com/questions/855544/is-there-a-way-to-flush-a-posix-socket I

Re: std.socket.TcpSocket.flush

2010-07-26 Thread Rory Mcguire
Heywood Floyd wrote: > Rory Mcguire Wrote: > >> Hi, >> >> What is one supposed to use to flush a TcpSocket. >> >> flush doesn't seem to exist, should I really just use the c function? >> >> -Rory > > > Was in a similar situation, found this: >http://stackoverflow.com/questions/855544/is-