function _M.set_keepalive()

in lib/shenyu/register/zookeeper/connection.lua [108:115]


function _M.set_keepalive(self, ...)
    local sock = self.sock
    if not sock then
        return nil, "not initialized"
    end
    
    return sock:setkeepalive(...)
end