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/natpmp/constants.rb
Views: 11704
1
# -*- coding: binary -*-
2
##
3
#
4
# NAT-PMP constants
5
#
6
# by Jon Hart <[email protected]>
7
#
8
##
9
10
module Rex
11
module Proto
12
module NATPMP::Constants
13
DefaultPort = 5351
14
Version = 0
15
TCP = 2
16
UDP = 1
17
end
18
end
19
end
20
21