Changeset - fe33d765e5b5
[Not reviewed]
0 2 0
Jan Kaluza - 13 years ago 2012-10-04 09:55:26
hanzz.k@gmail.com
include also signal.h
2 files changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
include/transport/vcardresponder.h
Show inline comments
 
@@ -50,13 +50,13 @@ class VCardResponder : public Swift::Responder<Swift::VCard> {
 
			std::string id;
 
			time_t received;
 
		};
 

	
 
		virtual bool handleGetRequest(const Swift::JID& from, const Swift::JID& to, const std::string& id, boost::shared_ptr<Swift::VCard> payload);
 
		virtual bool handleSetRequest(const Swift::JID& from, const Swift::JID& to, const std::string& id, boost::shared_ptr<Swift::VCard> payload);
 
		UserManager *m_userManager;
 
		std::map<unsigned int, VCardData> m_queries;
 
		unsigned int m_id;
 
		Swift::Timer::ref m_collectTimer;
 
};
 

	
 
}
 
\ No newline at end of file
 
}
src/networkpluginserver.cpp
Show inline comments
 
@@ -47,24 +47,26 @@
 

	
 
#include "utf8.h"
 

	
 
#include <Swiften/FileTransfer/ReadBytestream.h>
 
#include <Swiften/Elements/StreamInitiationFileInfo.h>
 

	
 
#ifdef _WIN32
 
#include "windows.h"
 
#include <stdint.h>
 
#else
 
#include "sys/wait.h"
 
#include "sys/signal.h"
 
#include <sys/types.h>
 
#include <signal.h>
 
#include "popt.h"
 
#endif
 

	
 
using namespace Transport::Util;
 

	
 
namespace Transport {
 

	
 
static unsigned long backend_id;
 
static unsigned long bytestream_id;
 

	
 
DEFINE_LOGGER(logger, "NetworkPluginServer");
 

	
0 comments (0 inline, 0 general)