PageRenderTime 41ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/IronPython_Main/Runtime/Tests/LinqDlrTests/testenv/perl/eg/core/client

#
Perl | 34 lines | 26 code | 7 blank | 1 comment | 11 complexity | a4639b828db44d716ac97384249537f3 MD5 | raw file
Possible License(s): GPL-2.0, MPL-2.0-no-copyleft-exception, CPL-1.0, CC-BY-SA-3.0, BSD-3-Clause, ISC, AGPL-3.0, LGPL-2.1, Apache-2.0
  1. #!./perl
  2. $pat = 'S n C4 x8';
  3. $inet = 2;
  4. $echo = 7;
  5. $smtp = 25;
  6. $nntp = 119;
  7. $test = 2345;
  8. $SIG{'INT'} = 'dokill';
  9. $this = pack($pat,$inet,0, 128,149,13,43);
  10. $that = pack($pat,$inet,$test,127,0,0,1);
  11. if (socket(S,2,1,6)) { print "socket ok\n"; } else { die $!; }
  12. if (bind(S,$this)) { print "bind ok\n"; } else { die $!; }
  13. if (connect(S,$that)) { print "connect ok\n"; } else { die $!; }
  14. select(S); $| = 1; select(stdout);
  15. if ($child = fork) {
  16. while (<STDIN>) {
  17. print S;
  18. }
  19. sleep 3;
  20. do dokill();
  21. }
  22. else {
  23. while (<S>) {
  24. print;
  25. }
  26. }
  27. sub dokill { kill 9,$child if $child; }