January 28th, 2013 08:21 AM
This is my finished code, I added timeout also but seems to hang connected if no response back, otherwise works:
#include <windows.h>
#include <stdio.h>
#include <string.h>
#include...
January 28th, 2013 08:13 AM
Thanks!
I did it like this:
HANDLE hThreadArray[200];
char str[MAX];
char *x[MAX];
int i = 0;
while(!feof(infile)) {
January 28th, 2013 05:20 AM
By "that works" I mean using "printf("%s", line_buffer)" that prints out every line out from my text.
January 28th, 2013 03:48 AM
An how should I safely start every thread with different lines read from my file? Because if I just do "printf("%s", line_buffer)" that works.
January 28th, 2013 03:06 AM
This code ruined all my day. Basically I have a list of 50 webservers I administrate, I want to check them if up/alive (isAlive() function), I parse my webservers.txt file with the 50 ips/hostnames...