2009-01-07 06:53:29 +00:00
|
|
|
/*
|
2014-01-19 01:09:44 +00:00
|
|
|
* This file Copyright (C) 2008-2014 Mnemosyne LLC
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2009-01-07 06:53:29 +00:00
|
|
|
* $Id$
|
|
|
|
*/
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2009-12-15 00:51:39 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
|
|
|
#error only libtransmission should #include this header.
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef TR_CLIENTS_H
|
|
|
|
#define TR_CLIENTS_H
|
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/**
|
2010-01-19 19:37:00 +00:00
|
|
|
* @brief parse a peer-id into a human-readable client name and version number
|
2009-05-29 19:17:12 +00:00
|
|
|
* @ingroup utils
|
|
|
|
*/
|
2013-02-04 16:23:33 +00:00
|
|
|
char* tr_clientForId (char * buf, size_t buflen, const void * peer_id);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2009-12-15 00:51:39 +00:00
|
|
|
#endif
|