/* Copyright (C) 2002 Hayato Fujiwara This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include #include "defun-dld.h" #include "dirfns.h" #include "error.h" #include "help.h" #include "oct-map.h" #include "systime.h" #include "ov.h" #include "oct-obj.h" #include "utils.h" #include "oct-env.h" #include #include #include #include #include #include #include #include #define BUFF_SIZE SSIZE_MAX // COMM DEFUN_DLD (sclose, args, , "sclose (sockets)\n\ \n\ Close sockets") { octave_value retval; errno=0; if(args.length () == 1) { int i,nsock=0,sock,k,error_code,err=0,nl; nsock=args(0).matrix_value().rows()*2; if((int)args(0).matrix_value().data()[0]==0){ int num,pid; struct pollfd *pollfd; pollfd=(struct pollfd *)malloc(nsock*sizeof(struct pollfd)); for(i=0;ih_name,hehe->h_name,hehe->h_name,pid ); } if(pollfd[k].revents&POLLERR){ error("Error condition - %s",hehe->h_name ); } if(pollfd[k].revents&POLLHUP){ error("Hung up - %s",hehe->h_name ); } } } } } for(i=nsock-1;i>=0;i--){ sock=(int)args(0).matrix_value().data()[i]; if(sock!=0){ if(close(sock)!=0) err++; } } if(err) error("sclose error %d",err); retval=(double)err; } else print_usage ("sclose"); return retval; } /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; End: *** */