![]() |
Packetbuffer for IOCP - Printable Version +- Mirage Source (https://mirage-engine.uk/forums) +-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61) +--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18) +---- Forum: Resources (https://mirage-engine.uk/forums/forumdisplay.php?fid=49) +---- Thread: Packetbuffer for IOCP (/showthread.php?tid=563) |
Packetbuffer for IOCP - William - 01-01-2007 Difficulty: 1/5 Introduction You should only make this change if you have IOCP. Step 1, complete this tutorial: http://www.key2heaven.net/ms/forums/viewtopic.php?t=894 Step 2, replace the whole sub: Code: Sub SendQueuedData() Code: Sub SendQueuedData() That should make the packet buffer work for IOCP as well. - Krloz - 08-01-2007 thanks - TheRealDamien - 08-01-2007 Uhh to add this tut - http://www.key2heaven.net/ms/forums/viewtopic.php?t=894 you dont need to have ICOP... I recommend you make that clear to everyone because your post was very unclear about that. - William - 08-01-2007 Damien, don't get me doubting my knowledge when Im correct. You see this was added with IOCP: Code: Public Sub WriteBytes(dbytes() As Byte, Optional thenShutdown As Boolean) And for example, the packet buffer had this in the original tutorial: Code: If Len(TmpStr) > 0 Then Code: If Len(TmpStr) > 0 Then And also, I helped another person with that code for this IOCP with the packet buffer, and that worked fine for me too. My former Topic concerning this: http://www.key2heaven.net/ms/forums/vie ... 401aa29e01 - Obsidian - 10-01-2007 Please read before posting any comments that may be taken as 'flame-bait', and please, if you have the urge to flame someone, PM them and try to keep the forum clean... it really doesn't make anyone look good, or better than the person they decide to flame. It is pointless and annoying for everyone. That is all. - Xlithan - 08-03-2007 Works great, thanks. |