Changeset - 33587d6fc128
[Not reviewed]
0 3 0
HanzZ - 14 years ago 2011-06-09 22:58:42
hanzz.k@gmail.com
Fixed compilation with latest Swiften
3 files changed with 6 insertions and 6 deletions:
0 comments (0 inline, 0 general)
tests/login/main.cpp
Show inline comments
 
@@ -33,8 +33,8 @@ int main(int, char **argv) {
 
	client->onConnected.connect(&handleConnected);
 
	client->onDisconnected.connect(bind(&handleDisconnected, _1));
 
	client->onMessageReceived.connect(bind(&handleMessageReceived, _1));
 
	ClientOptions opt;
 
	opt.allowPLAINOverNonTLS = true;
 
	Swift::ClientOptions opt;
 
	opt.allowPLAINWithoutTLS = true;
 
	client->connect(opt);
 

	
 
	eventLoop.run();
tests/login_bad_name/main.cpp
Show inline comments
 
@@ -34,8 +34,8 @@ int main(int, char **argv) {
 
	client->onConnected.connect(&handleConnected);
 
	client->onDisconnected.connect(bind(&handleDisconnected, _1));
 
	client->onMessageReceived.connect(bind(&handleMessageReceived, _1));
 
	ClientOptions opt;
 
	opt.allowPLAINOverNonTLS = true;
 
	Swift::ClientOptions opt;
 
	opt.allowPLAINWithoutTLS = true;
 
	client->connect(opt);
 

	
 
	eventLoop.run();
tests/login_bad_name2/main.cpp
Show inline comments
 
@@ -34,8 +34,8 @@ int main(int, char **argv) {
 
	client->onConnected.connect(&handleConnected);
 
	client->onDisconnected.connect(bind(&handleDisconnected, _1));
 
	client->onMessageReceived.connect(bind(&handleMessageReceived, _1));
 
	ClientOptions opt;
 
	opt.allowPLAINOverNonTLS = true;
 
	Swift::ClientOptions opt;
 
	opt.allowPLAINWithoutTLS = true;
 
	client->connect(opt);
 

	
 
	eventLoop.run();
0 comments (0 inline, 0 general)