I would like to know the beacon default sleep time and timeout when team server is not found. #203
-
If I generate a beacon with its default setting for example like this: What would be its default timeout setting to connec to the team server again? For example if beacon is running but no team server is responding, how many times does it retries to connect? Lets say if beacon is not be able to contact the team server for a week or so long duruation, will that beacon be exited automatically? If that exists/stops after certain number of retries, how can i make it retry to connect to team server upto unlimited time untill i stop the process manually? Can anyone please help me related to this timeout and sleep setting? I know I can set the sleep as i test it is reconnecting to the team server to after specified seconds, if i set 1 hours time as a sleep timing, how many retires does it do to connect to team server? if anyone can reply and explain on this it would be appreciated and it would help me alot for my testing and learning :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Under the above judgment rules:
|
Beta Was this translation helpful? Give feedback.
beacon
judgment connected toTeamServer
is calculated by successfully establishing a communication port. For example, if you use CDN or Nginx, etc., even if theTeamServer
is closed,beacon
has successfully established a communication with the settingC2 HOST
.Under the above judgment rules:
sleep
does not interrupt more than 48h,beacon
will automatically exitvoid cc2_retryConnect(int retryCount) {}
function hook built -in error heavy connection stage.…