Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  auth_delay.c

  Sprache: C
 

/* -------------------------------------------------------------------------
 *
 * auth_delay.c
 *
 * Copyright (c) 2010-2025, PostgreSQL Global Development Group
 *
 * IDENTIFICATION
 *  contrib/auth_delay/auth_delay.c
 *
 * -------------------------------------------------------------------------
 */

#include "postgres.h"

#include <limits.h>

#include "libpq/auth.h"
#include "utils/guc.h"

PG_MODULE_MAGIC_EXT(
     .name = "auth_delay",
     .version = PG_VERSION
);

/* GUC Variables */
static int auth_delay_milliseconds = 0;

/* Original Hook */
static ClientAuthentication_hook_type original_client_auth_hook = NULL;

/*
 * Check authentication
 */

static void
auth_delay_checks(Port *port, int status)
{
 /*
  * Any other plugins which use ClientAuthentication_hook.
 */

 if (original_client_auth_hook)
  original_client_auth_hook(port, status);

 /*
  * Inject a short delay if authentication failed.
 */

 if (status != STATUS_OK)
 {
  pg_usleep(1000L * auth_delay_milliseconds);
 }
}

/*
 * Module Load Callback
 */

void
_PG_init(void)
{
 /* Define custom GUC variables */
 DefineCustomIntVariable("auth_delay.milliseconds",
       "Milliseconds to delay before reporting authentication failure",
       NULL,
       &auth_delay_milliseconds,
       0,
       0, INT_MAX / 1000,
       PGC_SIGHUP,
       GUC_UNIT_MS,
       NULL,
       NULL,
       NULL);

 MarkGUCPrefixReserved("auth_delay");

 /* Install Hooks */
 original_client_auth_hook = ClientAuthentication_hook;
 ClientAuthentication_hook = auth_delay_checks;
}

Messung V0.5 in Prozent
C=94 H=93 G=93

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-08-08) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=141584
#Domains=738142