WebSocketPerMessageDeflateCompressor
This commit is contained in:
		@@ -67,6 +67,16 @@ namespace ix
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    bool WebSocketPerMessageDeflateCompressor::compress(const std::string& in, std::string& out)
 | 
					    bool WebSocketPerMessageDeflateCompressor::compress(const std::string& in, std::string& out)
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        return compressData(in, out);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    bool WebSocketPerMessageDeflateCompressor::compress(const std::vector<uint8_t>& in, std::string& out)
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        return compressData(in, out);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    template<typename T, typename S> bool WebSocketPerMessageDeflateCompressor::compressData(const T& in, S& out)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        //
 | 
					        //
 | 
				
			||||||
        // 7.2.1.  Compression
 | 
					        // 7.2.1.  Compression
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -9,6 +9,7 @@
 | 
				
			|||||||
#include "zlib.h"
 | 
					#include "zlib.h"
 | 
				
			||||||
#include <memory>
 | 
					#include <memory>
 | 
				
			||||||
#include <string>
 | 
					#include <string>
 | 
				
			||||||
 | 
					#include <vector>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace ix
 | 
					namespace ix
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@@ -20,6 +21,9 @@ namespace ix
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        bool init(uint8_t deflateBits, bool clientNoContextTakeOver);
 | 
					        bool init(uint8_t deflateBits, bool clientNoContextTakeOver);
 | 
				
			||||||
        bool compress(const std::string& in, std::string& out);
 | 
					        bool compress(const std::string& in, std::string& out);
 | 
				
			||||||
 | 
					        bool compress(const std::vector<uint8_t>& in, std::string& out);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        template<typename T, typename S> bool compressData(const T& in, S& out);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    private:
 | 
					    private:
 | 
				
			||||||
        static bool endsWith(const std::string& value, const std::string& ending);
 | 
					        static bool endsWith(const std::string& value, const std::string& ending);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user