Tagged Questions
0
votes
1answer
48 views
Timeout implementation in C for TFTP
I am trying to implement the the timeout mechanism in my c implementation of TFTP, and i am looking for some general help.
What I am wondering is how to manage the timeout situation. The premature ...
1
vote
1answer
57 views
C: Writing a proper time-out
Upon closely scouring through resources, I'm still not entirely sure how to write a proper and usable timer function in C. I am not working with threads (or parallelizable code). I simply want to ...
2
votes
2answers
301 views
connect() returns “Operation now in progress” on blocking socket?
I have a blocking socket (at least it appears so in following code):
sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (sock < 0) {
ERROR("%s: error opening socket", ...
0
votes
1answer
234 views
Timeouts in C# serial port
I am using the C# Serial port library for communicating with a sensor and PC .
I am frequently getting timeouts with the SerialPort.Read() method even though there is data in there. I used serial ...
0
votes
1answer
58 views
How to set timer for a c program being called from php script?
I have a textarea in my webpage in which the user is to paste a c program. At the server side, I save this code in a file appropriately. I use the shell_exec() function to call gcc to execute the c ...
0
votes
0answers
104 views
Strange timeout in C function select()
First of all, I apologize if my english is not perfect, but I should be able to make you understand.
I am working on a TFTP-server project, which permits download and upload operations to a client, ...
1
vote
2answers
310 views
How to setup timeout for multiple UDP packets in C?
I'm writing a udp server/client program in which the server send packets to client through a single port with a fixed window size, and the client will send ack packet back for each packet received. ...
1
vote
1answer
186 views
How to make gets() wait only particular time for input from STDIN in C?
Just as title states. I have gets(buffer) in while(1) infinite loop, which stops on gets(buffer) and wait ad infinitum. I would like gets(buffer) to wait only lets say 3 seconds for input from STDIN, ...
2
votes
2answers
226 views
Socket: Connect will spend 2 minutes looking for IP before it timesOut. How to reduce that time?
I want to reduce the allowed timeOut time that socket:connect will take to look up an IP/Port to connect to? On some network routers like Netgear that use IP 10.0.0.x only takes less than a second to ...
3
votes
4answers
3k views
How can I implement timeout for read() when reading from a serial port (C/C++)
I am reading bytes from a serial port in C++ using a file descriptor and the posix/unix read() function. In this example, I am reading 1 byte from the serial port (baud rate settings and similiar are ...
1
vote
0answers
53 views
Get timeout and rexmut from a r/w request in tftp protocol in c
I'm trying to implement a tftp server.
I've got a stucture :
typedef struct {
u_int16_t opcode;
char filename[MAXPATH_STRLEN + 1];
char mode[MAXMODE_STRLEN + 1];
char ...
1
vote
1answer
525 views
libcurl c, timeout and success transfer
I have to trasfer files using FTP protocol and libcurl in c. It works fine, but I have some problems.
1) If a transfer is started, but at a certain point I disconnect from the network, my program ...
1
vote
2answers
456 views
How can I make timeout = 1 second for wait_event_timeout function?
How can I make timeout = 1 second for wait_event_timeout function?
Function : wait_event_timeout (wq,condition,timeout);
How can I make timeout = 1 second.
And if call function like that : ...
2
votes
1answer
693 views
How to circumvent the “foreground lock timeout” to activate my window?
I'm trying to make an application like Launchy/Enso/etc., which pops up when the user presses the Caps Lock key.
To do this, I have needed to install a low-level keyboard hook (WH_KEYBOARD_LL), from ...
0
votes
2answers
347 views
C programming error with FD_SET
I have an issue with my code, and I can't find out what the problem is as i'm new to select();
Could anyone please tell me what's the issue from?
run_fct.c: In function ‘run’:
run_fct.c:22: error: ...
3
votes
1answer
1k views
Connection time out of TCP write (netstat shows ESTABLISHED)
I made an experiment:
A server listens on port 8804 accepts a connection of a client and then send data to the client endless. I shutdown the network.
When I run netstat -anotp | grep 8804 ,it ...
0
votes
1answer
1k views
socket timeout: It works, but why and how, mainly the select() function?
Here is part of the code I'm using now.
fd_set fdset;
struct timeval tv;
int flags = fcntl(sockfd, F_GETFL);
fcntl(sockfd, F_SETFL, O_NONBLOCK);
connect(sockfd,(struct sockaddr ...
2
votes
2answers
198 views
Distinguishing device disconnects from timeouts
When using ReadFile on a communications resource it is possible to detect read timeouts by checking if less bytes than the requested amount of bytes were read. For example, when I want to read 1 byte, ...
2
votes
2answers
1k views
libcurl - Strange timeout after 5 seconds
I'm using libcurl to communicate with Twitter and Identi.ca. Everything works perfectly as long as my connection isn't busy. But if I'm downloading a large file, the curl requests timeout after 5 ...
3
votes
3answers
1k views
Add a Timeout for getchar()
This is a question in the C programming language.
I need to add a timeout function for getchar() in my program.
What do I do so that when my program reaches the instruction getchar(), it will only ...
0
votes
1answer
792 views
Handling time-out in C client-server program
I have a small client-server program, and I want to close the connection to the client after 10 sec of max time-out. I have an alarm and the function that closes the connection and the alarm handler ...
1
vote
2answers
290 views
Best way to write a function that takes in a timeout (posix C)
So I have an embedded Linux device that is connected to a motor controller via a serial port. I am writing an interface library which makes a lot of nice generic functions which other programs will ...
3
votes
3answers
402 views
Make select() crack without writing to a file desc?
I have this thread in my application that monitors a set of client sockets. I use select() to block until a client makes a request, so that I can handle it efficiently without multiplying threads.
...
7
votes
4answers
3k views
About recv and the read buffer - C Berkeley Sockets
I am using berkeley sockets and TCP (SOCK_STREAM sockets).
The process is:
I connect to a remote address.
I send a message to it.
I receive a message from it.
Imagine I am using the following ...
4
votes
2answers
917 views
Is there a timeout mecanism in MPI?
Everything is the title.
My team and I are currently working on a project and we are using MPI. In one place, we are doing a MPI_send resquesting for a resource with a timeout. If the resource is ...
0
votes
1answer
321 views
zero read timeout for pcap
Is -1 a valid read timeout for pcap?
I was told by someone that setting to_ms to -1 in pcap_open_live(char *device, int snaplen, int promisc, int to_ms, char *errbuf); causes it to return immediately ...
1
vote
3answers
452 views
select() on sockets with timeout
Inside the read FD_SET I have several sockets:
the main socket listening for new connections
accepted sockets listening for incoming data.
I set the timeout for 30 seconds and called select(). I ...
0
votes
5answers
2k views
Simple C/C++ network I/O library
I have the following problem to solve. I want to make a number of requests to a number of "remote" servers (actually, a server farm we control). The connection is very simple. Send a line, and then ...
5
votes
3answers
3k views
irritating select() behaviour in c
while (xxx) {
timeout.tv_sec=TIMEOUT;
timeout.tv_usec=0;
FD_ZERO(&set);
FD_SET(sd,&set);
switch (select(FD_SETSIZE,&set,NULL,NULL,&timeout))
xxxxx
}
works ...
