Changeset 10072 for trunk/libtransmission/torrent.c
- Timestamp:
- Feb 2, 2010, 1:15:26 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/torrent.c
r9979 r10072 98 98 99 99 tr_torrent* 100 tr_torrentFindFromMagnetLink( tr_session * session, const char * magnet ) 101 { 102 tr_magnet_info * info; 103 tr_torrent * tor = NULL; 104 105 if(( info = tr_magnetParse( magnet ))) 106 { 107 tor = tr_torrentFindFromHash( session, info->hash ); 108 tr_magnetFree( info ); 109 } 110 111 return tor; 112 } 113 114 tr_torrent* 100 115 tr_torrentFindFromObfuscatedHash( tr_session * session, 101 116 const uint8_t * obfuscatedTorrentHash )
Note: See TracChangeset
for help on using the changeset viewer.