Changeset 62bb4e4


Ignore:
Timestamp:
2007-08-20T18:50:25Z (17 years ago)
Author:
VMiklos <vmiklos@…>
Branches:
master
Children:
f932b65
Parents:
72f697b
Message:

mark received messages as read so that skype won't say there are unread messages

Location:
skype
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • skype/README

    r72f697b r62bb4e4  
    8181- Receiving away status changes
    8282
    83 - skyped (the tcp daemon that is a gateway between Skype and tcp)
     83- `skyped` (the tcp daemon that is a gateway between Skype and tcp)
    8484
    85 - Error handling when skyped is not running and when it exists
     85- Error handling when `skyped` is not running and when it exits
     86
     87- Marking received messages as seen so that Skype won't say there are unread messages
    8688
    8789== What needs to be done (aka. TODO)
    88 
    89 - mark received messages as read so that skype won't say there are unread messages
    9090
    9191- Away status changes (send)
  • skype/skype.c

    r72f697b r62bb4e4  
    137137                                                g_snprintf(buf, 1024, "GET CHATMESSAGE %s BODY\n", id);
    138138                                                skype_write( ic, buf, strlen( buf ) );
     139                                                g_snprintf(buf, 1024, "SET CHATMESSAGE %s SEEN\n", id);
     140                                                skype_write( ic, buf, strlen( buf ) );
    139141                                        }
    140142                                        else if(!strncmp(info, "FROM_HANDLE ", 12))
Note: See TracChangeset for help on using the changeset viewer.