class com.sun.jndi.dns.Tcp
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.sun.jndi.dns.Tcp
  super_class: java.lang.Object
{
  private java.net.Socket sock;
    descriptor: Ljava/net/Socket;
    flags: (0x0002) ACC_PRIVATE

  java.io.InputStream in;
    descriptor: Ljava/io/InputStream;
    flags: (0x0000) 

  java.io.OutputStream out;
    descriptor: Ljava/io/OutputStream;
    flags: (0x0000) 

  void <init>(java.net.InetAddress, int);
    descriptor: (Ljava/net/InetAddress;I)V
    flags: (0x0000) 
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // com.sun.jndi.dns.Tcp this
        start local 1 // java.net.InetAddress server
        start local 2 // int port
         0: .line 689
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 690
            aload 0 /* this */
            new java.net.Socket
            dup
            aload 1 /* server */
            iload 2 /* port */
            invokespecial java.net.Socket.<init>:(Ljava/net/InetAddress;I)V
            putfield com.sun.jndi.dns.Tcp.sock:Ljava/net/Socket;
         2: .line 691
            aload 0 /* this */
            getfield com.sun.jndi.dns.Tcp.sock:Ljava/net/Socket;
            iconst_1
            invokevirtual java.net.Socket.setTcpNoDelay:(Z)V
         3: .line 692
            aload 0 /* this */
            new java.io.BufferedOutputStream
            dup
            aload 0 /* this */
            getfield com.sun.jndi.dns.Tcp.sock:Ljava/net/Socket;
            invokevirtual java.net.Socket.getOutputStream:()Ljava/io/OutputStream;
            invokespecial java.io.BufferedOutputStream.<init>:(Ljava/io/OutputStream;)V
            putfield com.sun.jndi.dns.Tcp.out:Ljava/io/OutputStream;
         4: .line 693
            aload 0 /* this */
            new java.io.BufferedInputStream
            dup
            aload 0 /* this */
            getfield com.sun.jndi.dns.Tcp.sock:Ljava/net/Socket;
            invokevirtual java.net.Socket.getInputStream:()Ljava/io/InputStream;
            invokespecial java.io.BufferedInputStream.<init>:(Ljava/io/InputStream;)V
            putfield com.sun.jndi.dns.Tcp.in:Ljava/io/InputStream;
         5: .line 694
            return
        end local 2 // int port
        end local 1 // java.net.InetAddress server
        end local 0 // com.sun.jndi.dns.Tcp this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/sun/jndi/dns/Tcp;
            0    6     1  server  Ljava/net/InetAddress;
            0    6     2    port  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      server  
      port    

  void close();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.jndi.dns.Tcp this
         0: .line 697
            aload 0 /* this */
            getfield com.sun.jndi.dns.Tcp.sock:Ljava/net/Socket;
            invokevirtual java.net.Socket.close:()V
         1: .line 698
            return
        end local 0 // com.sun.jndi.dns.Tcp this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/jndi/dns/Tcp;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "DnsClient.java"