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

Search:

Type: Posts; User: Hitokage

Search: Search took 0.01 seconds.

  1. Replies
    9
    Views
    15,530

    Re: Receiving the Multicast Listener Report

    So I have found a solution to my problem. Even though I still don't know why the code above doesn't work (as I said I suspect that those packets are somehow filtered since they are on a special...
  2. Replies
    9
    Views
    15,530

    Re: Receiving the Multicast Listener Report

    It seems so.
  3. Replies
    9
    Views
    15,530

    Re: Receiving the Multicast Listener Report

    I am using Linux.

    I did some edits to the code so it looks like this now:



    int ipv6RawFdRcv = socket(AF_INET6, SOCK_RAW, IPPROTO_IPV6);
    if (ipv6RawFdRcv == -1)
    {
    ...
  4. Replies
    9
    Views
    15,530

    Re: Receiving the Multicast Listener Report

    Thanks for the effort. I'm still playing with the code but really no idea what's wrong here.
  5. Replies
    9
    Views
    15,530

    Re: Receiving the Multicast Listener Report

    Thank you for the advice! I have tried to check every call there but no luck. It should work right now I think.

    I am starting to think there is some flaw in my logic. Is it OK to join those...
  6. Replies
    9
    Views
    15,530

    Receiving the Multicast Listener Report

    Hello.
    I'd like to receive the multicast listener report that is sent as a reply to the Multicast listener query. My code however doesn't accept anything. I'd really appreciate any help.

    Here is...
  7. Replies
    4
    Views
    7,686

    Re: ICMPv6 Checksum

    Many thanks. Now I feel really dumb. It was the data type after all...
  8. Replies
    4
    Views
    7,686

    Re: ICMPv6 Checksum

    Thank you so much for this check. The problem was in the data type but this has really helped me!
  9. Replies
    4
    Views
    7,686

    [RESOLVED] ICMPv6 Checksum

    Hey there,
    I am trying to figure out how to calculate the [ICMPv6 checksum](https://tools.ietf.org/html/rfc4443#section-2.3).

    Let's assume I have an IPv6 packet like this:

    Source IP: fe 80 00...
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured