59606162636465
public ServerSocket createSocket(int port) throws IOException { init(); return new SSLServerSocket(context,port); }
6970717273747576777879
{ init(); ServerSocket tmp; try { tmp=new SSLServerSocket(context,port,backlog); } catch (IOException e){ throw e; } return tmp;
82838485868788
public ServerSocket createSocket(int port, int backlog, InetAddress ifAddress) throws IOException { init(); return new SSLServerSocket(context,port,backlog,ifAddress); }
58596061626364
6869707172737475767778
81828384858687
101102103104105106107
111112113114115116117118119120121
124125126127128129130