12. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/4/2017 8:04:33 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

12.1 Files compared

# Location File Last Modified
1 rdk.zip\rdk\product\production\rdk\bin vista-aso-rejector.js Fri Jun 16 12:36:43 2017 UTC
2 rdk.zip\rdk\product\production\rdk\bin vista-aso-rejector.js Tue Oct 3 17:57:59 2017 UTC

12.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 36
Changed 1 2
Inserted 0 0
Removed 0 0

12.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

12.4 Active regular expressions

No regular expressions were active.

12.5 Comparison detail

  1   #!/usr/bin /env node
  2   'use stric t';
  3  
  4   var net =  require('n et');
  5  
  6   var VISTA_ ASO_DEFAUL T_PORT =  PORT ;
  7  
  8   var server  = net.cre ateServer( function(s ocket) {
  9       socket .setNoDela y(true);
  10       consol e.log('con nection re ceived fro m ' + sock et.remoteA ddress + ' :' + socke t.remotePo rt);
  11       socket .on('data' , function (data) {
  12           so cket.end() ;
  13       });
  14   });
  15  
  16   server.lis ten(VISTA_ ASO_DEFAUL T_PORT, fu nction() {
  17       var ad dress = se rver.addre ss();
  18       consol e.log(__fi lename + '  listening  on ' + ad dress.addr ess + ':'  + address. port);
  19   });