From 70e337eaa8e523d74e3b3757ac6972a72b8e44cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 30 Dec 2017 16:04:07 +0100 Subject: kopete: Remove the AIM specific code from liboscar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko (cherry picked from commit 036b0229dba794cf6267b522ac1f6449b6708d51) --- .../protocols/oscar/liboscar/clientreadytask.cpp | 35 ++++++---------------- 1 file changed, 9 insertions(+), 26 deletions(-) (limited to 'kopete/protocols/oscar/liboscar/clientreadytask.cpp') diff --git a/kopete/protocols/oscar/liboscar/clientreadytask.cpp b/kopete/protocols/oscar/liboscar/clientreadytask.cpp index 3025a0d8..6d1b07a7 100644 --- a/kopete/protocols/oscar/liboscar/clientreadytask.cpp +++ b/kopete/protocols/oscar/liboscar/clientreadytask.cpp @@ -64,38 +64,21 @@ void ClientReadyTask::onGo() buffer->addWord( 0x0003 ); break; case 0x0013: - buffer->addWord( client()->isIcq() ? 0x0002 : 0x0003 ); + buffer->addWord( 0x0002 ); break; default: buffer->addWord( 0x0001 ); }; - - if ( client()->isIcq() ) - { - if ( i == 0x0002 ) - buffer->addWord( 0x0101 ); - else - buffer->addWord( 0x0110 ); - - //always add 0x047B - buffer->addWord( 0x047B ); + + if ( i == 0x0002 ) { + buffer->addWord( 0x0101 ); } - else //we're AIM so AOL has us do something completely different! *sigh* - { - switch( i ) - { - case 0x0008: - case 0x000B: - case 0x000C: - buffer->addWord( 0x0104 ); - buffer->addWord( 0x0001 ); - break; - default: - buffer->addWord( 0x0110 ); - buffer->addWord( 0x059B ); - break; - }; + else { + buffer->addWord( 0x0110 ); } + + //always add 0x047B + buffer->addWord( 0x047B ); } //send the damn thing so we can finally be finished -- cgit v1.2.1