| 632 | } |
| 633 | |
| 634 | RetroShareLink RetroShareLink::createExtraFile(const QString& name, uint64_t size, const QString& hash,const QString& ssl_id) |
| 635 | { |
| 636 | RetroShareLink link; |
| 637 | link.clear(); |
| 638 | |
| 639 | link._name = name; |
| 640 | link._size = size; |
| 641 | link._hash = hash; |
| 642 | link._SSLid = ssl_id; |
| 643 | |
| 644 | link._type = TYPE_EXTRAFILE; |
| 645 | |
| 646 | link.check(); |
| 647 | |
| 648 | return link; |
| 649 | } |
| 650 | |
| 651 | //Private Chat deprecated |
| 652 |
no test coverage detected