4f8392239a4acdc994f624a99fd366c1f96ce2e0
[jFCPlib.git] / src / net / pterodactylus / fcp / ClientHello.java
1 /*
2  * jSite2 - ClientHello.java -
3  * Copyright © 2008 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.fcp;
21
22 /**
23  * A “ClientHello” message that <i>must</i> be sent to the node first thing
24  * after calling {@link FcpConnection#connect()}.
25  * 
26  * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
27  * @version $Id$
28  */
29 public class ClientHello extends FcpMessage {
30
31         /**
32          * Creates a new “ClientHello” message with the given client name. The
33          * client name has to be unique to the node otherwise you will get a
34          * {@link CloseConnectionDuplicateClientName} response from the node!
35          * 
36          * @param clientName
37          *            The unique client name
38          */
39         public ClientHello(String clientName) {
40                 this(clientName, "2.0");
41         }
42
43         /**
44          * Creates a new “ClientHello” message with the given client name. The
45          * client name has to be unique to the node otherwise you will get a
46          * {@link CloseConnectionDuplicateClientName} response from the node! The
47          * expected FCP version is currently ignored by the node.
48          * 
49          * @param clientName
50          *            The unique client name
51          * @param expectedVersion
52          *            The FCP version that the node is expected to talk
53          */
54         public ClientHello(String clientName, String expectedVersion) {
55                 super("ClientHello");
56                 setField("Name", clientName);
57                 setField("ExpectedVersion", expectedVersion);
58         }
59
60 }