views:

31

answers:

2

Is it possible to skip a portion of the incoming data on a TCP stream socket, instead of having to read it into a buffer? Preferably, I'm looking for something that also works asynchronously.

+2  A: 

Yes, just read it and discard it.

Alex
+1  A: 

Not possible. Read it into another buffer.

Pavel Radzivilovsky