Lines Matching refs:fifo
38 When running, the program creates the named pipe "hiper.fifo"
40 Whenever there is input into the fifo, the program reads the input as a list
46 % echo http://www.yahoo.com > hiper.fifo
49 % cat my-url-list > hiper.fifo
51 The fifo buffer is handled almost instantly, so you can even add more URL's
86 int fifofd; /* fifo filedescriptor */
393 /* This gets called whenever data is received from the fifo */
413 static const char *fifo = "hiper.fifo";
420 fprintf(MSG_OUT, "Creating named pipe \"%s\"\n", fifo);
421 if(lstat (fifo, &st) == 0) {
428 unlink(fifo);
429 if(mkfifo (fifo, 0600) == -1) {
433 sockfd = open(fifo, O_RDWR | O_NONBLOCK, 0);
446 fprintf(MSG_OUT, "Now, pipe some URL's into > %s\n", fifo);
454 unlink(fifo);