Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Postfix/src/smtp/   (Postfix Mailserver Version 3.11©)  Datei vom 16.10.2025 mit Größe 3 kB image not shown  

Quelle  smtp_state.c

  Sprache: C
 

/*++
/* NAME
/* smtp_state 3
/* SUMMARY
/* initialize/cleanup shared state
/* SYNOPSIS
/* #include "smtp.h"
/*
/* SMTP_STATE *smtp_state_alloc()
/*
/* void smtp_state_free(state)
/* SMTP_STATE *state;
/* DESCRIPTION
/* smtp_state_init() initializes the shared state, and allocates
/* memory for buffers etc.
/*
/* smtp_cleanup() destroys memory allocated by smtp_state_init().
/* STANDARDS
/* DIAGNOSTICS
/* BUGS
/* SEE ALSO
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*
/* Wietse Venema
/* Google, Inc.
/* 111 8th Avenue
/* New York, NY 10011, USA
/*--*/


/* System library. */

#include <sys_defs.h>

/* Utility library. */

#include <mymalloc.h>
#include <vstring.h>
#include <msg.h>

/* Global library. */

#include <mail_params.h>
#include <debug_peer.h>

 /*
  * TLS library.
  */

#if defined(USE_TLS) && defined(USE_TLSRPT)
#include <tlsrpt_wrapper.h>
#endif

/* Application-specific. */

#include "smtp.h"
#include "smtp_sasl.h"

/* smtp_state_alloc - initialize */

SMTP_STATE *smtp_state_alloc(void)
{
    SMTP_STATE *state = (SMTP_STATE *) mymalloc(sizeof(*state));

    state->misc_flags = 0;
    state->src = 0;
    state->service = 0;
    state->request = 0;
    state->session = 0;
    state->status = 0;
    state->space_left = 0;
    state->iterator->request_nexthop = vstring_alloc(100);
    state->iterator->dest = vstring_alloc(100);
    state->iterator->host = vstring_alloc(100);
    state->iterator->addr = vstring_alloc(100);
    state->iterator->saved_dest = vstring_alloc(100);
#ifdef USE_TLSRPT
    state->tlsrpt = 0;
#endif
#ifdef USE_TLS
    state->reqtls_level = SMTP_REQTLS_POLICY_ACT_DISABLE;
    if (var_log_tls_feature_status)
 state->tls_stats = pol_stats_create();
    else
#endif
 state->tls_stats = 0;
    if (var_smtp_cache_conn) {
 state->dest_label = vstring_alloc(10);
 state->dest_prop = vstring_alloc(10);
 state->endp_label = vstring_alloc(10);
 state->endp_prop = vstring_alloc(10);
 state->cache_used = htable_create(1);
    } else {
 state->dest_label = 0;
 state->dest_prop = 0;
 state->endp_label = 0;
 state->endp_prop = 0;
 state->cache_used = 0;
    }
    state->why = dsb_create();
    state->debug_peer_per_nexthop = 0;
    state->logged_line_length_limit = 0;
    return (state);
}

/* smtp_state_free - destroy state */

void    smtp_state_free(SMTP_STATE *state)
{
#ifdef USE_TLS
    /* The TLS policy cache lifetime is one delivery. */
    smtp_tls_policy_cache_flush();
    if (state->tls_stats)
 pol_stats_free(state->tls_stats);
#endif
    vstring_free(state->iterator->request_nexthop);
    vstring_free(state->iterator->dest);
    vstring_free(state->iterator->host);
    vstring_free(state->iterator->addr);
    vstring_free(state->iterator->saved_dest);
#ifdef USE_TLSRPT
    if (state->tlsrpt)
 trw_free(state->tlsrpt);
#endif
    if (state->dest_label)
 vstring_free(state->dest_label);
    if (state->dest_prop)
 vstring_free(state->dest_prop);
    if (state->endp_label)
 vstring_free(state->endp_label);
    if (state->endp_prop)
 vstring_free(state->endp_prop);
    if (state->cache_used)
 htable_free(state->cache_used, (void (*) (void *)) 0);
    if (state->why)
 dsb_free(state->why);
    if (state->debug_peer_per_nexthop)
 debug_peer_restore();

    myfree((void *) state);
}

Messung V0.5 in Prozent
C=74 H=93 G=83

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

*© 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.