Beispiel #1
0
int denora_event_eob(char *source, int ac, char **av)
{
    if (denora->protocoldebug) {
        protocol_debug(source, ac, av);
    }
    update_sync_state(source, SYNC_COMPLETE);
    return MOD_CONT;
}
Beispiel #2
0
int denora_event_eob(char *source, int ac, char **av)
{
    Server *s;

    if (denora->protocoldebug)
        protocol_debug(source, ac, av);

    s = server_find(source);
    if (stricmp(s->name, denora->uplink) == 0)
        send_cmd(NULL, "%s EA", p10id);

    update_sync_state(source, SYNC_COMPLETE);
    return MOD_CONT;
}
Beispiel #3
0
int denora_event_eob(char *source, int ac, char **av)
{
    update_sync_state(denora->uplink, SYNC_COMPLETE);
    return MOD_CONT;
}