CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/rex/proto/redis.rb
Views: 11655
1
require 'rex/proto/redis/base'
2
require 'rex/proto/redis/version6'
3
4
module Rex
5
module Proto
6
# Protocol module inside the Rex namespace to support Redis.
7
# Because the behavior of Redis changes between certain versions,
8
# dedicated submodules exist for each version
9
module Redis
10
11
end
12
end
13
end
14
15