Enable the DataStream protocol by default
[quassel.git] / src / common / peerfactory.cpp
index 655a6e1..0dc0140 100644 (file)
@@ -27,8 +27,8 @@
 PeerFactory::ProtoList PeerFactory::supportedProtocols()
 {
     ProtoList result;
-    result.append(ProtoDescriptor(Protocol::LegacyProtocol, 0));
     result.append(ProtoDescriptor(Protocol::DataStreamProtocol, DataStreamPeer::supportedFeatures()));
+    result.append(ProtoDescriptor(Protocol::LegacyProtocol, 0));
     return result;
 }