summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/oscar/liboscar/icqtask.h
blob: 043ab0376b40b2ce754df3fc6cd67b2c18cf35f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
   Kopete Oscar Protocol
   icqtask.h - SNAC 0x15 parsing 

   Copyright (c) 2004 Gustavo Pichorim Boiko <gustavo.boiko@kdemail.net>

   Kopete (c) 2002-2004 by the Kopete developers <kopete-devel@kde.org>

   *************************************************************************
   *                                                                       *
   * This library is free software; you can redistribute it and/or         *
   * modify it under the terms of the GNU Lesser General Public            *
   * License as published by the Free Software Foundation; either          *
   * version 2 of the License, or (at your option) any later version.      *
   *                                                                       *
   *************************************************************************
*/

#ifndef ICQTASK_H
#define ICQTASK_H

#include "task.h"

using namespace Oscar;

class Buffer;

class ICQTask : public Task
{
TQ_OBJECT
  
public:
	ICQTask( Task* parent );
	~ICQTask();

	virtual void onGo();
	virtual bool forMe( const Transfer* t ) const;
	virtual bool take( Transfer* t );

	void parseInitialData( Buffer buf );
	Buffer* addInitialData( Buffer* buf = 0 ) const;

	DWORD uin() const;
	void setUin( DWORD uin );

	WORD sequence() const;
	void setSequence( WORD seqeunce );
	
	DWORD requestType() const;
	void setRequestType( WORD type );
	
	DWORD requestSubType() const;
	void setRequestSubType( WORD subType );

private:
	DWORD m_icquin; //little endian
	WORD m_sequence;
	WORD m_requestType; //little endian
	WORD m_requestSubType; //little endian
};
#endif