Implement “SentFeed” response message.
[jFCPlib.git] / src / net / pterodactylus / fcp / FcpConnection.java
index d4271a5..2f40785 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * jSite2 - FpcConnection.java -
- * Copyright © 2008 David Roden
+ * jFCPlib - FpcConnection.java - Copyright © 2008 David Roden
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -309,6 +308,8 @@ public class FcpConnection implements Closeable {
                        fcpListenerManager.fireReceivedNodeHello(new NodeHello(fcpMessage));
                } else if ("CloseConnectionDuplicateClientName".equals(messageName)) {
                        fcpListenerManager.fireReceivedCloseConnectionDuplicateClientName(new CloseConnectionDuplicateClientName(fcpMessage));
+               } else if ("SentFeed".equals(messageName)) {
+                       fcpListenerManager.fireSentFeed(new SentFeed(fcpMessage));
                } else if ("ReceivedBookmarkFeed".equals(messageName)) {
                        fcpListenerManager.fireReceivedBookmarkFeed(new ReceivedBookmarkFeed(fcpMessage));
                } else {