Changeset - bf012e48b2aa
[Not reviewed]
backends/libcommuni/ircnetworkplugin.h
Show inline comments
 
@@ -44,7 +44,7 @@ class IRCNetworkPlugin : public QObject, public NetworkPlugin {
 
		QTcpSocket *m_socket;
 
		std::map<std::string, MyIrcSession *> m_sessions;
 
		std::vector<std::string> m_servers;
 
		int m_currentServer;
 
		std::string m_identify;
 
		bool m_firstPing;
 
};
 
\ No newline at end of file
 
};
backends/twitter/libtwitcurl/base64.cpp
Show inline comments
 
@@ -117,7 +117,7 @@ std::string base64_decode(std::string const& encoded_string) {
 
    char_array_3[2] = ((char_array_4[2] & 0x3) << 6) + char_array_4[3];
 
 
    for (j = 0; (j < i - 1); j++) ret += char_array_3[j];
 
  }
 
 
  return ret;
 
}
 
\ No newline at end of file
 
}
backends/twitter/libtwitcurl/base64.h
Show inline comments
 
#include <string>
 
 
std::string base64_encode(unsigned char const* , unsigned int len);
 
std::string base64_decode(std::string const& s);
 
\ No newline at end of file
 
std::string base64_decode(std::string const& s);
backends/twitter/libtwitcurl/urlencode.cpp
Show inline comments
 
@@ -34,7 +34,7 @@ std::string urlencode( const std::string &c )
 
		{
 
			escaped.append("%");
 
			escaped.append( char2hex(c[i]) );//converts char 255 to string "FF"
 
		}
 
	}
 
	return escaped;
 
}
 
\ No newline at end of file
 
}
backends/twitter/libtwitcurl/urlencode.h
Show inline comments
 
@@ -4,7 +4,7 @@
 
#include <iostream>
 
#include <string>
 
 
std::string char2hex( char dec );
 
std::string urlencode( const std::string &c );
 
 
#endif // __URLENCODE_H__
 
\ No newline at end of file
 
#endif // __URLENCODE_H__
include/transport/discoitemsresponder.h
Show inline comments
 
@@ -51,7 +51,7 @@ class DiscoItemsResponder : public Swift::GetResponder<Swift::DiscoItems> {
 
		Component *m_component;
 
		boost::shared_ptr<Swift::DiscoItems> m_commands;
 
		boost::shared_ptr<Swift::DiscoItems> m_rooms;
 
		DiscoInfoResponder *m_discoInfoResponder;
 
};
 

	
 
}
 
\ No newline at end of file
 
}
include/transport/gatewayresponder.h
Show inline comments
 
@@ -37,7 +37,7 @@ class GatewayResponder : public Swift::Responder<Swift::GatewayPayload> {
 
	private:
 
		virtual bool handleGetRequest(const Swift::JID& from, const Swift::JID& to, const std::string& id, boost::shared_ptr<Swift::GatewayPayload> payload);
 
		virtual bool handleSetRequest(const Swift::JID& from, const Swift::JID& to, const std::string& id, boost::shared_ptr<Swift::GatewayPayload> payload);
 
		UserManager *m_userManager;
 
};
 

	
 
}
 
\ No newline at end of file
 
}
include/transport/memoryusage.h
Show inline comments
 
@@ -29,7 +29,7 @@
 
namespace Transport {
 

	
 
#ifndef WIN32
 
	void process_mem_usage(double& shared, double& resident_set, pid_t pid = 0);
 
#endif
 

	
 
}
 
\ No newline at end of file
 
}
include/transport/rosterresponder.h
Show inline comments
 
@@ -44,7 +44,7 @@ class RosterResponder : public Swift::Responder<Swift::RosterPayload> {
 
	private:
 
		virtual bool handleGetRequest(const Swift::JID& from, const Swift::JID& to, const std::string& id, boost::shared_ptr<Swift::RosterPayload> payload);
 
		virtual bool handleSetRequest(const Swift::JID& from, const Swift::JID& to, const std::string& id, boost::shared_ptr<Swift::RosterPayload> payload);
 
		UserManager *m_userManager;
 
};
 

	
 
}
 
\ No newline at end of file
 
}
spectrum/src/win32/ServiceWrapper.cpp
Show inline comments
 
@@ -114,7 +114,7 @@ void ServiceWrapper::RunService() {
 
	SERVICE_TABLE_ENTRYA serviceTable[] = {
 
		{ ServiceName, ServiceMain },
 
		{ NULL, NULL}
 
	};
 

	
 
	StartServiceCtrlDispatcherA(serviceTable);
 
}
 
\ No newline at end of file
 
}
spectrum_manager/src/methods.h
Show inline comments
 
@@ -50,7 +50,7 @@ void stop_instances(ManagerConfig *config, const std::string &_jid = "");
 
int show_status(ManagerConfig *config);
 

	
 
void ask_local_server(ManagerConfig *config, Swift::BoostNetworkFactories &networkFactories, const std::string &jid, const std::string &message);
 

	
 
std::vector<std::string> show_list(ManagerConfig *config, bool show = true);
 

	
 
std::string get_response();
 
\ No newline at end of file
 
std::string get_response();
src/blockresponder.h
Show inline comments
 
@@ -40,7 +40,7 @@ class BlockResponder : public Swift::SetResponder<Transport::BlockPayload> {
 
	private:
 
		virtual bool handleSetRequest(const Swift::JID& from, const Swift::JID& to, const std::string& id, boost::shared_ptr<Transport::BlockPayload> payload);
 

	
 
		UserManager *m_userManager;
 
};
 

	
 
}
 
\ No newline at end of file
 
}
src/discoinforesponder.h
Show inline comments
 
@@ -57,7 +57,7 @@ class DiscoInfoResponder : public Swift::GetResponder<Swift::DiscoInfo> {
 
		Config *m_config;
 
		Swift::CapsInfo m_capsInfo;
 
		std::map<std::string, std::string> m_rooms;
 
		std::map<std::string, std::string> m_commands;
 
};
 

	
 
}
 
\ No newline at end of file
 
}
src/storageresponder.h
Show inline comments
 
@@ -39,7 +39,7 @@ class StorageResponder : public Swift::Responder<Swift::PrivateStorage> {
 
		virtual bool handleGetRequest(const Swift::JID& from, const Swift::JID& to, const std::string& id, boost::shared_ptr<Swift::PrivateStorage> payload);
 
		virtual bool handleSetRequest(const Swift::JID& from, const Swift::JID& to, const std::string& id, boost::shared_ptr<Swift::PrivateStorage> payload);
 
		StorageBackend *m_storageBackend;
 
		UserManager *m_userManager;
 
};
 

	
 
}
 
\ No newline at end of file
 
}
0 comments (0 inline, 0 general)