How can I log Instant Messaging being done on my computer?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Younger Dryas

    How can I log Instant Messaging being done on my computer?

    I want to be able to log all the Instant Messaging (in this case MSN)
    which is occuring on my computer. Don't really want to buy one of those
    products that does, so any thoughts on how this might be done? is C++
    even the right way to approach it?
  • Jack Klein

    #2
    Re: How can I log Instant Messaging being done on my computer?

    On 14 Feb 2004 17:52:07 -0800, Doctorh3@comcas t.net (Younger Dryas)
    wrote in comp.lang.c++:
    [color=blue]
    > I want to be able to log all the Instant Messaging (in this case MSN)
    > which is occuring on my computer. Don't really want to buy one of those
    > products that does, so any thoughts on how this might be done? is C++
    > even the right way to approach it?[/color]

    I have no idea whether C++ is the right language or not, but even if
    it is your question is how to deal with Windows APIs, and needs to be
    asked in a Windows programming groups, not here.

    --
    Jack Klein
    Home: http://JK-Technology.Com
    FAQs for
    comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
    comp.lang.c++ http://www.parashift.com/c++-faq-lite/
    alt.comp.lang.l earn.c-c++

    Comment

    • Sharad Kala

      #3
      Re: How can I log Instant Messaging being done on my computer?


      "Younger Dryas" <Doctorh3@comca st.net> wrote in message
      news:ed4635f9.0 402141752.daeca fa@posting.goog le.com...[color=blue]
      > I want to be able to log all the Instant Messaging (in this case MSN)
      > which is occuring on my computer. Don't really want to buy one of those
      > products that does, so any thoughts on how this might be done? is C++
      > even the right way to approach it?[/color]

      The question is actually more suitable for a Windows NG.
      Don't know whether this servers your purpose but one possible way is to write
      your own MSN client.
      MSN messenger has it's own client-server protocol.
      Going more offtopic, it's something like this -

      Client -VER 0 MSNP10 MSNP9 CVR0\r\n
      Server- VER 0 MSNP9 CVR0\r\n
      Client- CVR 1 0x409 winnt 5.0 i386 MSNMSGR 6.1.0207 MSMSGS
      example@passpor t.com\r\n
      Server- CVR 1 6.00602 6.0.0602 5.0.0527 ..so on

      Once you know the protocol then your client can connect to
      messenger.hotma il.com:1863 and start talking.
      Then you can log all what comes in the MSG primitive.
      You can drop me a personal mail if you want more assistance with the protocol or
      google for it.

      Best wishes,
      Sharad




      Comment

      Working...