Hi Richard,
The failover idea is interesting. I have a couple comments on the patch:
* How is --peerinit different from --ipchange?
* Shouldn't
if ( !(signal_received == SIGUSR1 && !options->sigusr1_script ) )
...
be
if (signal_received == SIGUSR1 && options->sigusr1_script)
...
?
Ja
Hello James,
Thursday, December 19, 2002, 3:59:16 PM, you wrote:
JY> * How is --peerinit different from --ipchange?
Good question. None. sh*t Please see below. :)
JY> * Shouldn't
JY> if ( !(signal_received == SIGUSR1 && !options->sigusr1_script ) )
JY>...
JY> be
JY> if (signal_received =
Richard Mueller said:
> Hello James,
>
> Thursday, December 19, 2002, 3:59:16 PM, you wrote:
>
> JY> * How is --peerinit different from --ipchange?
> Good question. None. sh*t Please see below. :)
>
> JY> * Shouldn't
> JY> if ( !(signal_received == SIGUSR1 && !options->sigusr1_script ) )
> J