NAME

gc_stat_reaction - Actions for handling connections with statistics in the YELLOW zone limit.

SYNOPSIS

#include <game-carrier/common.h>

enum gc_stat_reaction {
    GC_STAT_REACTION_DEFAULT = 0,
    GC_STAT_REACTION_CLOSE = 1,
    GC_STAT_REACTION_IGNORE = 2,
    GC_STAT_REACTION_COUNT,
};

DESCRIPTION

The gc_stat_reaction enum is used to indicate how the Game Carrier application responds to the on_issue event.

Name Value Description
GC_STAT_REACTION_DEFAULT 0 The Game Carrier server will use the default reaction for this type of issue.
GC_STAT_REACTION_CLOSE 1 The Game Carrier server may close the connection.
GC_STAT_REACTION_IGNORE 2 The Game Carrier server may ignore the issue and continue working with the connection.
GC_STAT_REACTION_COUNT 3 The total number of available reactions.

SEE ALSO

on_issue, connectionSetLimit