Re: Standard network method
Apologies for following up to my own article...
infobahn wrote:[color=blue]
>[/color]
<snip>
[color=blue]
> int got_a_network = start_networkin g(params);
> if(got_a_networ k)
> {
> do stuff here
> }[/color]
This should read:
int network_error = start_networkin g(params);
if(network_erro r == 0)
{
do stuff here
}
Oops.
Apologies for following up to my own article...
infobahn wrote:[color=blue]
>[/color]
<snip>
[color=blue]
> int got_a_network = start_networkin g(params);
> if(got_a_networ k)
> {
> do stuff here
> }[/color]
This should read:
int network_error = start_networkin g(params);
if(network_erro r == 0)
{
do stuff here
}
Oops.
Comment