Tagged Questions
3
votes
5answers
193 views
feeding data to C API expecting a filename
I'm writing a straightforward C program on Linux and wish to use an existing library's API which expects data from a file. I must feed it a file name as a const char*. But i have data, just like ...
1
vote
2answers
148 views
Proper FIFO client-server connection
I am trying to write simple client and server C programs, communicating with each other in separate terminals. The server has to create a public fifo and wait for the client. Meanwhile the client is ...
1
vote
1answer
50 views
Why does my program hang when opening a mkfifo-ed pipe?
I use mkfifo to create a named pipe.
Then I use the following program to open it. However, the program hangs at the line "fopen". Is there something wrong here?
int main(int argc, char** argv) {
...
0
votes
1answer
82 views
FIFO server program
The above program i have typed in linux. It basically has to connect a client and server in separate terminals. But when i run them in the correct order, i.e
Compile server -> run server
Compile ...
0
votes
3answers
112 views
Syntax to Redirect to Input/Output to in C (UNIX)
I am trying to find the syntax that will let me redirect standard input output toward a named pipe after using the mkfifo() function and creating a child process using fork.
Which man page should I ...
0
votes
2answers
343 views
Having a trouble with opening FIFO in C
I'm having a trouble in opening FIFOs in C.. first I created them using mkfifo() function with permission : 0777, and when I tried to open them, it succeeded in opening the first FIFO only, then the ...