diff options
Diffstat (limited to 'Master/tlpkg/tlperl/site/lib/URI/tn3270.pm')
-rw-r--r-- | Master/tlpkg/tlperl/site/lib/URI/tn3270.pm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl/site/lib/URI/tn3270.pm b/Master/tlpkg/tlperl/site/lib/URI/tn3270.pm new file mode 100644 index 00000000000..232460017a8 --- /dev/null +++ b/Master/tlpkg/tlperl/site/lib/URI/tn3270.pm @@ -0,0 +1,13 @@ +package URI::tn3270; + +use strict; +use warnings; + +our $VERSION = '1.71'; +$VERSION = eval $VERSION; + +use parent 'URI::_login'; + +sub default_port { 23 } + +1; |