CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Clairvoyant1332

Search: Search took 0.02 seconds.

  1. Can't get MCAST_JOIN_GROUP to work on Windows 7

    Calling setsockopt with MCAST_JOIN_GROUP results in error 10014: The system detected an invalid pointer address in attempting to use a pointer argument in a call.

    Using similar code on Linux works...
  2. Re: Speed issue with UDP data on XP SP2 vs XP SP3

    I ran with different message sizes, and found that 1024 bytes packets did indeed move faster than 1025 bytes packets on the SP3 box. I tried setting FastSendDatagramThreshold to 1500, but it didn't...
  3. Replies
    1
    Views
    1,681

    Re: char array and endian concern

    What you need to do is convert the integers in your struct to network byte order before sending, then back to host byte order after you receive it. Since the int fields are 32 bit, use htonl() to...
  4. Re: Speed issue with UDP data on XP SP2 vs XP SP3

    I reproduced this issue with some shortened sample programs, which are attached (the transmitter takes an IP and port as the first two args). As before, SP2 -> SP3 ran close to the full 100Mbps,...
  5. Re: Speed issue with UDP data on XP SP2 vs XP SP3

    Windows firewall is off on both sides, and VirusScan on/off on either side doesn't make a difference.
  6. Speed issue with UDP data on XP SP2 vs XP SP3

    Hello,

    I have a multicast file transfer program which seems to be having some issues with speed on particular versions of Windows.

    I had a user of the software email me saying he was unable to...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured