Help for this page

Select Code to Download


  1. or download this
    sub SendFile
    {
    ...
    
       close IN;
    }
    
  2. or download this
    sub RecieveFile
    {
    ...
       close(OUT);
       print("Finished\n");
    }
    
  3. or download this
    use strict;
    
    ...
    
    close(OUT);
    close(IN);