Search:

Type: Posts; User: Dest

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    1,420

    Turns out it didn't work. I have a struct...

    Turns out it didn't work.

    I have a struct declared with char x[20];

    How can I compare the two structs to see if that variable is the same?
  2. Replies
    4
    Views
    1,933

    Yup, different issue. Ty.

    Yup, different issue. Ty.
  3. Replies
    4
    Views
    1,933

    Hmm thats what I thought but it doesn't seem to...

    Hmm thats what I thought but it doesn't seem to be working, might be a different issue.
  4. Replies
    4
    Views
    1,933

    Move struct into array of structs?

    I have an array of structs, and I create a new struct and want to move it into that array as to save it in between function calls. How do I do this?
  5. Replies
    5
    Views
    1,420

    I made the characters I wanted to compare into an...

    I made the characters I wanted to compare into an array and used a loop, thanks.
  6. Replies
    5
    Views
    1,420

    Comparing partial array of chars

    I have a char x[20]; I want to see if the first 5 characters are the same as another char. How would I do this? How does the other char have to be declared?
  7. Worked around it, just sent all the data...

    Worked around it, just sent all the data separately.
  8. I think WriteFile would handle that...

    I think WriteFile would handle that big_pile_of_data just fine.
  9. How do I accomplish this when WriteFile wants a...

    How do I accomplish this when WriteFile wants a pointer?
  10. Passing pointer to struct through mailslots, memory allocation?

    I'm using mailslots to pass structs between programs, or more precisely pointers to those structs. It is "working" as its passing something, but I'm unable to print out anything from the structs on...
  11. Replies
    5
    Views
    1,784

    Does a function pointer act like a variable?...

    Does a function pointer act like a variable? Should I treat it as one?
  12. Replies
    5
    Views
    1,784

    The RENDEZVOUS is a #define, the...

    The RENDEZVOUS is a #define, the dissect_aim_tlv_value_ipv4 is a method defined in another header file. It looks like the data is eventually stored in some type of tree, though where and how to get...
  13. Replies
    5
    Views
    1,784

    Creating struct from existing data

    I'm not sure how to describe this. I have the beginning of my struct:


    struct tapData {
    guchar buddy[20];
    char message[200];
    };

    and I need to expand it to include additional data. Right...
  14. Replies
    2
    Views
    1,759

    Ah I see now, shouldn't be a problem then I'd...

    Ah I see now, shouldn't be a problem then I'd assume.
  15. Replies
    2
    Views
    1,759

    Struct through Mailslot?

    Is it possible to send a struct through a Mailslot on Windows?
  16. Replies
    5
    Views
    2,565

    Ignore, I can't spell or read. X.X

    Ignore, I can't spell or read. X.X
  17. Replies
    5
    Views
    2,565

    Ah, thank you.

    Ah, thank you.
  18. Replies
    5
    Views
    2,565

    Structs and Error C2106

    I receive error C2106 (Compiler Error C2106 (C++))

    on these 2 lines:


    data.buddy = buddyname;
    data.message = "AAA";

    these are the relevant declarations at the beginning of the method:
  19. Replies
    2
    Views
    2,697

    Found it, it looks like I just have to add it to...

    Found it, it looks like I just have to add it to a list of files in the Makefile.common file. Does this sound right?

    Yup, seems to have worked for now.
  20. Replies
    2
    Views
    2,697

    Modifying the makefile?

    Now that I've modified the existing dissector in Wireshark I need to add my tap file to the project. Do I have to modify the makefile to include it in the build? Thanks.
  21. Replies
    6
    Views
    3,580

    Including an additional file (in this case...

    Including an additional file (in this case packet.h) solved the problem.
  22. Replies
    6
    Views
    3,580

    You can browse the code I'm modifying here:...

    You can browse the code I'm modifying here: [Wireshark] Index of /releases/wireshark-1.2.7/epan
    tap.h is in that directory, and I'm modifying packet-aim-messaging.c in the dissector subdirectory....
  23. Replies
    6
    Views
    3,580

    register.c packet-aim-messaging.c...

    register.c
    packet-aim-messaging.c
    c:\wireshark\epan\tap.h(31) : error C2143: syntax error : missing ')' before '*'

    c:\wireshark\epan\tap.h(31) : error C2081: 'packet_info' : name in formal...
  24. Replies
    6
    Views
    3,580

    Error occurs when adding #include?

    I'm working with the Wireshark code, revision 32343. If you're familiar with Wireshark, I'm adding a tap plugin for the aim_messaging dissector. My problem is, whenever I add
    #include <tap.h> to...
Results 1 to 24 of 24