public class com.jcraft.jsch.ChannelDirectTCPIP extends com.jcraft.jsch.Channel
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.jcraft.jsch.ChannelDirectTCPIP
  super_class: com.jcraft.jsch.Channel
{
  private static final int LOCAL_WINDOW_SIZE_MAX;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 131072

  private static final int LOCAL_MAXIMUM_PACKET_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 16384

  private static final byte[] _type;
    descriptor: [B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  java.lang.String host;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  int port;
    descriptor: I
    flags: (0x0000) 

  java.lang.String originator_IP_address;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  int originator_port;
    descriptor: I
    flags: (0x0000) 

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 38
            ldc "direct-tcpip"
            invokestatic com.jcraft.jsch.Util.str2byte:(Ljava/lang/String;)[B
            putstatic com.jcraft.jsch.ChannelDirectTCPIP._type:[B
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
         0: .line 46
            aload 0 /* this */
            invokespecial com.jcraft.jsch.Channel.<init>:()V
         1: .line 42
            aload 0 /* this */
            ldc "127.0.0.1"
            putfield com.jcraft.jsch.ChannelDirectTCPIP.originator_IP_address:Ljava/lang/String;
         2: .line 43
            aload 0 /* this */
            iconst_0
            putfield com.jcraft.jsch.ChannelDirectTCPIP.originator_port:I
         3: .line 47
            aload 0 /* this */
            getstatic com.jcraft.jsch.ChannelDirectTCPIP._type:[B
            putfield com.jcraft.jsch.ChannelDirectTCPIP.type:[B
         4: .line 48
            aload 0 /* this */
            ldc 131072
            invokevirtual com.jcraft.jsch.ChannelDirectTCPIP.setLocalWindowSizeMax:(I)V
         5: .line 49
            aload 0 /* this */
            ldc 131072
            invokevirtual com.jcraft.jsch.ChannelDirectTCPIP.setLocalWindowSize:(I)V
         6: .line 50
            aload 0 /* this */
            sipush 16384
            invokevirtual com.jcraft.jsch.ChannelDirectTCPIP.setLocalPacketSize:(I)V
         7: .line 51
            return
        end local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/jcraft/jsch/ChannelDirectTCPIP;

  void init();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
         0: .line 54
            aload 0 /* this */
            new com.jcraft.jsch.IO
            dup
            invokespecial com.jcraft.jsch.IO.<init>:()V
            putfield com.jcraft.jsch.ChannelDirectTCPIP.io:Lcom/jcraft/jsch/IO;
         1: .line 55
            return
        end local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/jcraft/jsch/ChannelDirectTCPIP;

  public void connect(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
        start local 1 // int connectTimeout
         0: .line 58
            aload 0 /* this */
            iload 1 /* connectTimeout */
            putfield com.jcraft.jsch.ChannelDirectTCPIP.connectTimeout:I
         1: .line 60
            aload 0 /* this */
            invokevirtual com.jcraft.jsch.ChannelDirectTCPIP.getSession:()Lcom/jcraft/jsch/Session;
            astore 2 /* _session */
        start local 2 // com.jcraft.jsch.Session _session
         2: .line 61
            aload 2 /* _session */
            invokevirtual com.jcraft.jsch.Session.isConnected:()Z
            ifne 4
         3: .line 62
            new com.jcraft.jsch.JSchException
            dup
            ldc "session is down"
            invokespecial com.jcraft.jsch.JSchException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 65
      StackMap locals: com.jcraft.jsch.Session
      StackMap stack:
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.io:Lcom/jcraft/jsch/IO;
            getfield com.jcraft.jsch.IO.in:Ljava/io/InputStream;
            ifnull 11
         5: .line 66
            aload 0 /* this */
            new java.lang.Thread
            dup
            aload 0 /* this */
            invokespecial java.lang.Thread.<init>:(Ljava/lang/Runnable;)V
            putfield com.jcraft.jsch.ChannelDirectTCPIP.thread:Ljava/lang/Thread;
         6: .line 67
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.thread:Ljava/lang/Thread;
            new java.lang.StringBuilder
            dup
            ldc "DirectTCPIP thread "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* _session */
            invokevirtual com.jcraft.jsch.Session.getHost:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.lang.Thread.setName:(Ljava/lang/String;)V
         7: .line 68
            aload 2 /* _session */
            getfield com.jcraft.jsch.Session.daemon_thread:Z
            ifeq 9
         8: .line 69
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.thread:Ljava/lang/Thread;
            aload 2 /* _session */
            getfield com.jcraft.jsch.Session.daemon_thread:Z
            invokevirtual java.lang.Thread.setDaemon:(Z)V
         9: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.thread:Ljava/lang/Thread;
            invokevirtual java.lang.Thread.start:()V
        10: .line 72
            goto 19
        11: .line 74
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.jcraft.jsch.ChannelDirectTCPIP.sendChannelOpen:()V
        end local 2 // com.jcraft.jsch.Session _session
        12: .line 76
            goto 19
        13: .line 77
      StackMap locals: com.jcraft.jsch.ChannelDirectTCPIP int
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
        14: .line 78
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.io:Lcom/jcraft/jsch/IO;
            invokevirtual com.jcraft.jsch.IO.close:()V
        15: .line 79
            aload 0 /* this */
            aconst_null
            putfield com.jcraft.jsch.ChannelDirectTCPIP.io:Lcom/jcraft/jsch/IO;
        16: .line 80
            aload 0 /* this */
            invokestatic com.jcraft.jsch.Channel.del:(Lcom/jcraft/jsch/Channel;)V
        17: .line 81
            aload 2 /* e */
            instanceof com.jcraft.jsch.JSchException
            ifeq 19
        18: .line 82
            aload 2 /* e */
            checkcast com.jcraft.jsch.JSchException
            athrow
        end local 2 // java.lang.Exception e
        19: .line 85
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int connectTimeout
        end local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   20     0            this  Lcom/jcraft/jsch/ChannelDirectTCPIP;
            0   20     1  connectTimeout  I
            2   12     2        _session  Lcom/jcraft/jsch/Session;
           14   19     2               e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           1    12      13  Class java.lang.Exception
    Exceptions:
      throws com.jcraft.jsch.JSchException
    MethodParameters:
                Name  Flags
      connectTimeout  

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
         0: .line 90
            aload 0 /* this */
            invokevirtual com.jcraft.jsch.ChannelDirectTCPIP.sendChannelOpen:()V
         1: .line 92
            new com.jcraft.jsch.Buffer
            dup
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.rmpsize:I
            invokespecial com.jcraft.jsch.Buffer.<init>:(I)V
            astore 1 /* buf */
        start local 1 // com.jcraft.jsch.Buffer buf
         2: .line 93
            new com.jcraft.jsch.Packet
            dup
            aload 1 /* buf */
            invokespecial com.jcraft.jsch.Packet.<init>:(Lcom/jcraft/jsch/Buffer;)V
            astore 2 /* packet */
        start local 2 // com.jcraft.jsch.Packet packet
         3: .line 94
            aload 0 /* this */
            invokevirtual com.jcraft.jsch.ChannelDirectTCPIP.getSession:()Lcom/jcraft/jsch/Session;
            astore 3 /* _session */
        start local 3 // com.jcraft.jsch.Session _session
         4: .line 95
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         5: .line 97
            goto 29
         6: .line 101
      StackMap locals: com.jcraft.jsch.ChannelDirectTCPIP com.jcraft.jsch.Buffer com.jcraft.jsch.Packet com.jcraft.jsch.Session int
      StackMap stack:
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.io:Lcom/jcraft/jsch/IO;
            getfield com.jcraft.jsch.IO.in:Ljava/io/InputStream;
            aload 1 /* buf */
            getfield com.jcraft.jsch.Buffer.buffer:[B
         7: .line 102
            bipush 14
         8: .line 103
            aload 1 /* buf */
            getfield com.jcraft.jsch.Buffer.buffer:[B
            arraylength
            bipush 14
            isub
         9: .line 104
            sipush 128
        10: .line 103
            isub
        11: .line 101
            invokevirtual java.io.InputStream.read:([BII)I
            istore 4 /* i */
        12: .line 106
            iload 4 /* i */
            ifgt 15
        13: .line 107
            aload 0 /* this */
            invokevirtual com.jcraft.jsch.ChannelDirectTCPIP.eof:()V
        14: .line 108
            goto 39
        15: .line 110
      StackMap locals:
      StackMap stack:
            aload 2 /* packet */
            invokevirtual com.jcraft.jsch.Packet.reset:()V
        16: .line 111
            aload 1 /* buf */
            bipush 94
            invokevirtual com.jcraft.jsch.Buffer.putByte:(B)V
        17: .line 112
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.recipient:I
            invokevirtual com.jcraft.jsch.Buffer.putInt:(I)V
        18: .line 113
            aload 1 /* buf */
            iload 4 /* i */
            invokevirtual com.jcraft.jsch.Buffer.putInt:(I)V
        19: .line 114
            aload 1 /* buf */
            iload 4 /* i */
            invokevirtual com.jcraft.jsch.Buffer.skip:(I)V
        20: .line 115
            aload 0 /* this */
            dup
            astore 5
            monitorenter
        21: .line 116
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.close:Z
            ifeq 24
        22: .line 117
            aload 5
            monitorexit
        23: goto 39
        24: .line 118
      StackMap locals: com.jcraft.jsch.ChannelDirectTCPIP
      StackMap stack:
            aload 3 /* _session */
            aload 2 /* packet */
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual com.jcraft.jsch.Session.write:(Lcom/jcraft/jsch/Packet;Lcom/jcraft/jsch/Channel;I)V
        25: .line 115
            aload 5
            monitorexit
        26: goto 29
      StackMap locals:
      StackMap stack: java.lang.Throwable
        27: aload 5
            monitorexit
        28: athrow
        29: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.jcraft.jsch.ChannelDirectTCPIP.isConnected:()Z
            ifeq 39
        30: .line 98
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.thread:Ljava/lang/Thread;
            ifnull 39
        31: .line 99
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.io:Lcom/jcraft/jsch/IO;
            ifnull 39
        32: .line 100
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.io:Lcom/jcraft/jsch/IO;
            getfield com.jcraft.jsch.IO.in:Ljava/io/InputStream;
            ifnonnull 6
        end local 4 // int i
        end local 3 // com.jcraft.jsch.Session _session
        end local 2 // com.jcraft.jsch.Packet packet
        end local 1 // com.jcraft.jsch.Buffer buf
        33: .line 121
            goto 39
        34: .line 122
      StackMap locals: com.jcraft.jsch.ChannelDirectTCPIP
      StackMap stack: java.lang.Exception
            pop
        35: .line 125
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.connected:Z
            ifne 37
        36: .line 126
            aload 0 /* this */
            iconst_1
            putfield com.jcraft.jsch.ChannelDirectTCPIP.connected:Z
        37: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.jcraft.jsch.ChannelDirectTCPIP.disconnect:()V
        38: .line 129
            return
        39: .line 132
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.jcraft.jsch.ChannelDirectTCPIP.eof:()V
        40: .line 133
            aload 0 /* this */
            invokevirtual com.jcraft.jsch.ChannelDirectTCPIP.disconnect:()V
        41: .line 134
            return
        end local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   42     0      this  Lcom/jcraft/jsch/ChannelDirectTCPIP;
            2   33     1       buf  Lcom/jcraft/jsch/Buffer;
            3   33     2    packet  Lcom/jcraft/jsch/Packet;
            4   33     3  _session  Lcom/jcraft/jsch/Session;
            5   33     4         i  I
      Exception table:
        from    to  target  type
          21    23      27  any
          24    26      27  any
          27    28      27  any
           0    33      34  Class java.lang.Exception

  public void setInputStream(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
        start local 1 // java.io.InputStream in
         0: .line 137
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.io:Lcom/jcraft/jsch/IO;
            aload 1 /* in */
            invokevirtual com.jcraft.jsch.IO.setInputStream:(Ljava/io/InputStream;)V
         1: .line 138
            return
        end local 1 // java.io.InputStream in
        end local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/jcraft/jsch/ChannelDirectTCPIP;
            0    2     1    in  Ljava/io/InputStream;
    MethodParameters:
      Name  Flags
      in    

  public void setOutputStream(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
        start local 1 // java.io.OutputStream out
         0: .line 140
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.io:Lcom/jcraft/jsch/IO;
            aload 1 /* out */
            invokevirtual com.jcraft.jsch.IO.setOutputStream:(Ljava/io/OutputStream;)V
         1: .line 141
            return
        end local 1 // java.io.OutputStream out
        end local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/jcraft/jsch/ChannelDirectTCPIP;
            0    2     1   out  Ljava/io/OutputStream;
    MethodParameters:
      Name  Flags
      out   

  public void setHost(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
        start local 1 // java.lang.String host
         0: .line 143
            aload 0 /* this */
            aload 1 /* host */
            putfield com.jcraft.jsch.ChannelDirectTCPIP.host:Ljava/lang/String;
            return
        end local 1 // java.lang.String host
        end local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/ChannelDirectTCPIP;
            0    1     1  host  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      host  

  public void setPort(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
        start local 1 // int port
         0: .line 144
            aload 0 /* this */
            iload 1 /* port */
            putfield com.jcraft.jsch.ChannelDirectTCPIP.port:I
            return
        end local 1 // int port
        end local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/ChannelDirectTCPIP;
            0    1     1  port  I
    MethodParameters:
      Name  Flags
      port  

  public void setOrgIPAddress(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
        start local 1 // java.lang.String foo
         0: .line 145
            aload 0 /* this */
            aload 1 /* foo */
            putfield com.jcraft.jsch.ChannelDirectTCPIP.originator_IP_address:Ljava/lang/String;
            return
        end local 1 // java.lang.String foo
        end local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/ChannelDirectTCPIP;
            0    1     1   foo  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      foo   

  public void setOrgPort(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
        start local 1 // int foo
         0: .line 146
            aload 0 /* this */
            iload 1 /* foo */
            putfield com.jcraft.jsch.ChannelDirectTCPIP.originator_port:I
            return
        end local 1 // int foo
        end local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/ChannelDirectTCPIP;
            0    1     1   foo  I
    MethodParameters:
      Name  Flags
      foo   

  protected com.jcraft.jsch.Packet genChannelOpenPacket();
    descriptor: ()Lcom/jcraft/jsch/Packet;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
         0: .line 149
            new com.jcraft.jsch.Buffer
            dup
            bipush 50
         1: .line 150
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.host:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            iadd
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.originator_IP_address:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            iadd
         2: .line 151
            sipush 128
            iadd
         3: .line 149
            invokespecial com.jcraft.jsch.Buffer.<init>:(I)V
            astore 1 /* buf */
        start local 1 // com.jcraft.jsch.Buffer buf
         4: .line 152
            new com.jcraft.jsch.Packet
            dup
            aload 1 /* buf */
            invokespecial com.jcraft.jsch.Packet.<init>:(Lcom/jcraft/jsch/Buffer;)V
            astore 2 /* packet */
        start local 2 // com.jcraft.jsch.Packet packet
         5: .line 158
            aload 2 /* packet */
            invokevirtual com.jcraft.jsch.Packet.reset:()V
         6: .line 159
            aload 1 /* buf */
            bipush 90
            invokevirtual com.jcraft.jsch.Buffer.putByte:(B)V
         7: .line 160
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.type:[B
            invokevirtual com.jcraft.jsch.Buffer.putString:([B)V
         8: .line 161
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.id:I
            invokevirtual com.jcraft.jsch.Buffer.putInt:(I)V
         9: .line 162
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.lwsize:I
            invokevirtual com.jcraft.jsch.Buffer.putInt:(I)V
        10: .line 163
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.lmpsize:I
            invokevirtual com.jcraft.jsch.Buffer.putInt:(I)V
        11: .line 164
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.host:Ljava/lang/String;
            invokestatic com.jcraft.jsch.Util.str2byte:(Ljava/lang/String;)[B
            invokevirtual com.jcraft.jsch.Buffer.putString:([B)V
        12: .line 165
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.port:I
            invokevirtual com.jcraft.jsch.Buffer.putInt:(I)V
        13: .line 166
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.originator_IP_address:Ljava/lang/String;
            invokestatic com.jcraft.jsch.Util.str2byte:(Ljava/lang/String;)[B
            invokevirtual com.jcraft.jsch.Buffer.putString:([B)V
        14: .line 167
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.jcraft.jsch.ChannelDirectTCPIP.originator_port:I
            invokevirtual com.jcraft.jsch.Buffer.putInt:(I)V
        15: .line 168
            aload 2 /* packet */
            areturn
        end local 2 // com.jcraft.jsch.Packet packet
        end local 1 // com.jcraft.jsch.Buffer buf
        end local 0 // com.jcraft.jsch.ChannelDirectTCPIP this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lcom/jcraft/jsch/ChannelDirectTCPIP;
            4   16     1     buf  Lcom/jcraft/jsch/Buffer;
            5   16     2  packet  Lcom/jcraft/jsch/Packet;
}
SourceFile: "ChannelDirectTCPIP.java"