Changeset 6933
- Timestamp:
- Oct 20, 2008, 4:04:26 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/transmission.h
r6932 r6933 1119 1119 { 1120 1120 /* Flags */ 1121 unsigned int isPrivate : 1;1122 unsigned int isMultifile : 1;1121 unsigned int isPrivate : 1; 1122 unsigned int isMultifile : 1; 1123 1123 1124 1124 /* General info */ 1125 uint8_t hash[SHA_DIGEST_LENGTH]; 1126 char hashString[2 * SHA_DIGEST_LENGTH + 1]; 1127 char * name; 1128 1129 /* Path to torrent */ 1130 char * torrent; 1125 uint8_t hash[SHA_DIGEST_LENGTH]; 1126 char hashString[2 * SHA_DIGEST_LENGTH + 1]; 1127 char * name; 1128 1129 /* Path to torrent Transmission's internal copy of the .torrent file. 1130 This field exists for compatability reasons in the Mac OS X client 1131 and should not be used in new code. */ 1132 char * torrent; 1131 1133 1132 1134 /* these trackers are sorted by tier */ … … 1134 1136 int trackerCount; 1135 1137 1136 char **webseeds;1138 char ** webseeds; 1137 1139 int webseedCount; 1138 1140 1139 1141 /* Torrent info */ 1140 char *comment;1141 char *creator;1142 time_t dateCreated;1142 char * comment; 1143 char * creator; 1144 time_t dateCreated; 1143 1145 1144 1146 /* Pieces info */ 1145 uint32_t 1146 tr_piece_index_t 1147 uint64_t 1148 tr_piece * 1147 uint32_t pieceSize; 1148 tr_piece_index_t pieceCount; 1149 uint64_t totalSize; 1150 tr_piece * pieces; 1149 1151 1150 1152 /* Files info */
Note: See TracChangeset
for help on using the changeset viewer.