com.fireflysource.net.websocket.common.extension.compress.XWebkitDeflateFrameExtension Maven / Gradle / Ivy
package com.fireflysource.net.websocket.common.extension.compress;
/**
* Implementation of the x-webkit-deflate-frame extension seen out
* in the wild. Using the alternate extension identification
*/
public class XWebkitDeflateFrameExtension extends DeflateFrameExtension {
@Override
public String getName() {
return "x-webkit-deflate-frame";
}
}