Lines Matching defs:fifo
41 When running, the program creates the named pipe "hiper.fifo"
43 Whenever there is input into the fifo, the program reads the input as a list
49 % echo http://www.yahoo.com > hiper.fifo
52 % cat my-url-list > hiper.fifo
54 The fifo buffer is handled almost instantly, so you can even add more URL's
371 /* This gets called whenever data is received from the fifo */
395 static const char *fifo = "hiper.fifo";
398 fprintf(MSG_OUT, "Creating named pipe \"%s\"\n", fifo);
399 if(lstat (fifo, &st) == 0) {
406 unlink(fifo);
407 if(mkfifo (fifo, 0600) == -1) {
411 sockfd = open(fifo, O_RDWR | O_NONBLOCK, 0);
418 fprintf(MSG_OUT, "Now, pipe some URL's into > %s\n", fifo);