Eine aufbereitete Darstellung der Quelle

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

Benutzer

Quelle  inet_windowsize.c

  Sprache: C
 

/*++
/* NAME
/* inet_windowsize 3
/* SUMMARY
/* TCP window scaling control
/* SYNOPSIS
/* #include <iostuff.h>
/*
/* int inet_windowsize;
/*
/* void set_inet_windowsize(sock, windowsize)
/* int sock;
/* int windowsize;
/* DESCRIPTION
/* set_inet_windowsize() overrides the default TCP window size
/* with the specified value. When called before listen() or
/* accept(), this works around broken infrastructure that
/* mis-handles TCP window scaling options.
/*
/* The global inet_windowsize variable is available for other
/* routines to remember that they wish to override the default
/* TCP window size. The variable is not accessed by the
/* set_inet_windowsize() function itself.
/*
/* Arguments:
/* .IP sock
/* TCP communication endpoint, before the connect(2) or listen(2) call.
/* .IP windowsize
/* The preferred TCP window size. This must be > 0.
/* DIAGNOSTICS
/* Panic: interface violation.
/* Warnings: some error return from setsockopt().
/* 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
/*--*/


/* System libraries. */

#include <sys_defs.h>
#include <sys/socket.h>

/* Utility library. */

#include <msg.h>
#include <iostuff.h>

/* Application storage. */

 /*
  * Tunable to work around broken routers.
  */

int     inet_windowsize = 0;

/* set_inet_windowsize - set TCP send/receive window size */

void    set_inet_windowsize(int sock, int windowsize)
{

    /*
     * Sanity check.
     */

    if (windowsize <= 0)
 msg_panic("inet_windowsize: bad window size %d", windowsize);

    /*
     * Generic implementation: set the send and receive buffer size before
     * listen() or connect().
     */

    if (setsockopt(sock, SOL_SOCKET, SO_SNDBUF, (void *) &windowsize,
     sizeof(windowsize)) < 0)
 msg_warn("setsockopt SO_SNDBUF %d: %m", windowsize);
    if (setsockopt(sock, SOL_SOCKET, SO_RCVBUF, (void *) &windowsize,
     sizeof(windowsize)) < 0)
 msg_warn("setsockopt SO_RCVBUF %d: %m", windowsize);
}

Messung V0.5 in Prozent
C=75 H=95 G=85

¤ Dauer der Verarbeitung: 0.25 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=277311
#Domains=752002