Upstream tarball 20080928
[amule.git] / src / OtherStructs.h
blob6ed211ff052b0925f4615cd4b7a8ea0d79b990a0
1 //
2 // This file is part of the aMule Project.
3 //
4 // Copyright (c) 2003-2008 aMule Team ( admin@amule.org / http://www.amule.org )
5 // Copyright (c) 2002-2008 Merkur ( devs@emule-project.net / http://www.emule-project.net )
6 //
7 // Any parts of this program derived from the xMule, lMule or eMule project,
8 // or contributed by third-party developers are copyrighted by their
9 // respective authors.
11 // This program is free software; you can redistribute it and/or modify
12 // it under the terms of the GNU General Public License as published by
13 // the Free Software Foundation; either version 2 of the License, or
14 // (at your option) any later version.
16 // This program is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU General Public License for more details.
20 //
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #ifndef OTHERSTRUCTS_H
27 #define OTHERSTRUCTS_H
29 #include <common/Path.h>
31 // Defined in <zlib.h>
32 struct z_stream_s;
35 // SERVER TO CLIENT
36 #if defined(_MSC_VER) || defined(__SUNPRO_CC)
37 #pragma pack(1)
38 #endif
39 struct Header_Struct{
40 int8 eDonkeyID;
41 int32 packetlength;
42 int8 command;
44 #if defined(_MSC_VER) || defined(__SUNPRO_CC)
46 #pragma pack()
47 #else
48 __attribute__((__packed__));
49 #endif
51 #if defined(_MSC_VER) || defined(__SUNPRO_CC)
52 #pragma pack(1)
53 #endif
54 struct UDP_Header_Struct {
55 int8 eDonkeyID;
56 int8 command;
58 #if defined(_MSC_VER) || defined(__SUNPRO_CC)
60 #pragma pack()
61 #else
62 __attribute__((__packed__));
63 #endif
65 #if defined(_MSC_VER) || defined(__SUNPRO_CC)
67 #pragma pack(1)
68 #endif
69 struct Requested_Block_Struct{
70 uint64 StartOffset;
71 uint64 EndOffset;
72 uint32 packedsize;
73 unsigned char FileID[16];
74 uint32 transferred; // Barry - This counts bytes completed
76 #if defined(_MSC_VER) || defined(__SUNPRO_CC)
78 #pragma pack()
79 #else
80 __attribute__((__packed__));
81 #endif
83 struct Requested_File_Struct{
84 unsigned char fileid[16];
85 uint32 lastasked;
86 uint8 badrequests;
88 #if defined(_MSC_VER) || defined(__SUNPRO_CC)
90 #pragma pack()
91 #else
92 __attribute__((__packed__));
93 #endif
95 struct Pending_Block_Struct{
96 Requested_Block_Struct* block;
97 struct z_stream_s* zStream; // Barry - Used to unzip packets
98 uint32 totalUnzipped; // Barry - This holds the total unzipped bytes for all packets so far
99 uint32 fZStreamError : 1,
100 fRecovered : 1;
103 struct Gap_Struct{
104 uint64 start;
105 uint64 end;
108 #if defined(_MSC_VER) || defined(__SUNPRO_CC)
109 #pragma pack(1)
110 #endif
111 struct ServerMet_Struct {
112 uint32 ip;
113 uint16 port;
114 uint32 tagcount;
116 #if defined(_MSC_VER) || defined(__SUNPRO_CC)
118 #pragma pack()
119 #else
120 __attribute__((__packed__));
121 #endif
123 struct TransferredData {
124 uint32 datalen;
125 uint32 timestamp;
129 //Kry import of 0.30d
130 // Maella -Enhanced Chunk Selection- (based on jicxicmic)
131 #if defined(_MSC_VER) || defined(__SUNPRO_CC)
132 #pragma pack(1)
133 #endif
134 struct Chunk {
135 uint16 part; // Index of the chunk
136 union {
137 uint16 frequency; // Availability of the chunk
138 uint16 rank; // Download priority factor (highest = 0, lowest = 0xffff)
141 #if defined(_MSC_VER) || defined(__SUNPRO_CC)
143 #pragma pack()
144 #else
145 __attribute__((__packed__));
146 #endif
148 struct Category_Struct
150 CPath path;
151 wxString title;
152 wxString comment;
153 uint32 color;
154 uint8 prio;
158 #endif // OTHERSTRUCTS_H
159 // File_checked_for_headers