1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** Contact: Qt Software Information (qt-info@nokia.com)
|
---|
5 | **
|
---|
6 | ** This file is part of the documentation of the Qt Toolkit.
|
---|
7 | **
|
---|
8 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
9 | ** Commercial Usage
|
---|
10 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
11 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
12 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
13 | ** a written agreement between you and Nokia.
|
---|
14 | **
|
---|
15 | ** GNU Lesser General Public License Usage
|
---|
16 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
17 | ** General Public License version 2.1 as published by the Free Software
|
---|
18 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
19 | ** packaging of this file. Please review the following information to
|
---|
20 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
21 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
22 | **
|
---|
23 | ** In addition, as a special exception, Nokia gives you certain
|
---|
24 | ** additional rights. These rights are described in the Nokia Qt LGPL
|
---|
25 | ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
|
---|
26 | ** package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you are unsure which license is appropriate for your use, please
|
---|
37 | ** contact the sales department at qt-sales@nokia.com.
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | /*!
|
---|
43 | \example network/torrent
|
---|
44 | \title Torrent Example
|
---|
45 |
|
---|
46 | The Torrent example is a functional BitTorrent client that
|
---|
47 | illustrates how to write a complex TCP/IP application using Qt.
|
---|
48 |
|
---|
49 | \image torrent-example.png
|
---|
50 |
|
---|
51 | \section1 License Information
|
---|
52 |
|
---|
53 | The implementation of the US Secure Hash Algorithm 1 (SHA1) in this example is
|
---|
54 | derived from the original description in \l{RFC 3174}.
|
---|
55 |
|
---|
56 | \legalese
|
---|
57 | Copyright (C) The Internet Society (2001). All Rights Reserved.
|
---|
58 |
|
---|
59 | This document and translations of it may be copied and furnished to
|
---|
60 | others, and derivative works that comment on or otherwise explain it
|
---|
61 | or assist in its implementation may be prepared, copied, published
|
---|
62 | and distributed, in whole or in part, without restriction of any
|
---|
63 | kind, provided that the above copyright notice and this paragraph are
|
---|
64 | included on all such copies and derivative works. However, this
|
---|
65 | document itself may not be modified in any way, such as by removing
|
---|
66 | the copyright notice or references to the Internet Society or other
|
---|
67 | Internet organizations, except as needed for the purpose of
|
---|
68 | developing Internet standards in which case the procedures for
|
---|
69 | copyrights defined in the Internet Standards process must be
|
---|
70 | followed, or as required to translate it into languages other than
|
---|
71 | English.
|
---|
72 |
|
---|
73 | The limited permissions granted above are perpetual and will not be
|
---|
74 | revoked by the Internet Society or its successors or assigns.
|
---|
75 |
|
---|
76 | This document and the information contained herein is provided on an
|
---|
77 | "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
|
---|
78 | TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
|
---|
79 | BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
|
---|
80 | HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
|
---|
81 | MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
---|
82 | \endlegalese
|
---|
83 | */
|
---|