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. Commercial Alternative to JupyterHub.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/rex/proto/ms_nrtp/enums.rb
Views: 18092
1
module Rex::Proto::MsNrtp
2
module Enums
3
OperationTypeEnum = {
4
# see: https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-nrtp/e64b2561-defe-4fb5-865e-ea6706c1253d
5
Request: 0,
6
OneWayRequest: 1,
7
Reply: 2
8
}
9
end
10
end
11
12