comparison src/luan/modules/IoLuan.java @ 1578:c922446f53aa

immutable threading
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 08 Feb 2021 14:16:19 -0700
parents 8fbcc4747091
children 08177ced7fa0
comparison
equal deleted inserted replaced
1577:60e5c324adf9 1578:c922446f53aa
641 } 641 }
642 return tbl; 642 return tbl;
643 } 643 }
644 644
645 public static LuanTable dns_lookup(String domain,String type) 645 public static LuanTable dns_lookup(String domain,String type)
646 throws NamingException 646 throws NamingException, LuanException
647 { 647 {
648 LuanTable tbl = new LuanTable(); 648 LuanTable tbl = new LuanTable();
649 InitialDirContext idc = new InitialDirContext(); 649 InitialDirContext idc = new InitialDirContext();
650 Attribute attribute; 650 Attribute attribute;
651 try { 651 try {