Changeset 6354

Show
Ignore:
Timestamp:
06/21/08 10:26:52 (2 months ago)
Author:
eugene
Message:

Removed a network log warning about 2 unknown List family SNAC subtypes. These subtypes are known, but no action should be done on our side.

Location:
trunk/licq
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/licq/include/licq_icq.h

    r6227 r6354  
    129129const unsigned short ICQ_SNACxLIST_UPDxACK         = 0x000E; // server 
    130130const unsigned short ICQ_SNACxLIST_ROSTxSYNCED     = 0x000F; // server 
    131 const unsigned short ICQ_SNACxLIST_ROSTxEDITxSTART = 0x0011; // client 
    132 const unsigned short ICQ_SNACxLIST_ROSTxEDITxEND   = 0x0012; // client 
     131const unsigned short ICQ_SNACxLIST_ROSTxEDITxSTART = 0x0011; // client, server 
     132const unsigned short ICQ_SNACxLIST_ROSTxEDITxEND   = 0x0012; // client, server 
    133133const unsigned short ICQ_SNACxLIST_AUTHxREQ2       = 0x0014; // client 
    134134const unsigned short ICQ_SNACxLIST_AUTHxREQ        = 0x0018; // client 
  • trunk/licq/src/icqd-srv.cpp

    r6347 r6354  
    47234723      break; 
    47244724    } 
    4725      
     4725 
     4726    case ICQ_SNACxLIST_ROSTxEDITxSTART: 
     4727    case ICQ_SNACxLIST_ROSTxEDITxEND: 
     4728    { 
     4729      // Nothing to be done here. 
     4730      // Server just encloses contact list changes with these. 
     4731      break; 
     4732    } 
     4733 
    47264734    default: 
    47274735      gLog.Warn(tr("%sUnknown List Family Subtype: %04hx\n"), L_SRVxSTR, nSubtype);