]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: assorted typo fixes in the code and comments
authorIlya Shipitsin <chipitsine@gmail.com>
Sun, 5 Jul 2020 11:36:08 +0000 (16:36 +0500)
committerChristopher Faulet <cfaulet@haproxy.com>
Mon, 6 Jul 2020 12:34:32 +0000 (14:34 +0200)
This is 11th iteration of typo fixes

23 files changed:
include/haproxy/server-t.h
src/arg.c
src/dns.c
src/fcgi-app.c
src/flt_http_comp.c
src/haproxy.c
src/hlua.c
src/http.c
src/http_ana.c
src/http_conv.c
src/http_fetch.c
src/htx.c
src/mux_h2.c
src/mux_pt.c
src/peers.c
src/proto_tcp.c
src/regex.c
src/sample.c
src/sink.c
src/ssl_ckch.c
src/time.c
src/tools.c
src/vars.c

index 54517b17c6c302e3fed6316c013f6ddd76144a7f..decc5e292daa82e070c61b5bd21f4f75cb98358d 100644 (file)
@@ -289,12 +289,12 @@ struct server {
        struct dns_resolvers *resolvers;        /* pointer to the resolvers structure used by this server */
        char *lastaddr;                         /* the address string provided by the server-state file */
        struct dns_options dns_opts;
-       int hostname_dn_len;                    /* sting length of the server hostname in Domain Name format */
+       int hostname_dn_len;                    /* string length of the server hostname in Domain Name format */
        char *hostname_dn;                      /* server hostname in Domain Name format */
        char *hostname;                         /* server hostname */
        struct sockaddr_storage init_addr;      /* plain IP address specified on the init-addr line */
        unsigned int init_addr_methods;         /* initial address setting, 3-bit per method, ends at 0, enough to store 10 entries */
-       enum srv_log_proto log_proto;           /* used proto to emmit messages on server lines from ring section */
+       enum srv_log_proto log_proto;           /* used proto to emit messages on server lines from ring section */
 
 #ifdef USE_OPENSSL
        char *sni_expr;             /* Temporary variable to store a sample expression for SNI */
index 2676ce8085356aa4e46076bbed3197b96d6ae743..ec7626d00802422c63916908f7804c2d6bb3f39f 100644 (file)
--- a/src/arg.c
+++ b/src/arg.c
@@ -362,7 +362,7 @@ int make_arg_list(const char *in, int len, uint64_t mask, struct arg **argp,
                memprintf(err_msg, "expected ')' before '%s'", word);
                if (len > 0)
                        free(word);
-               /* when we're missing a right paren, the empty part preceeding
+               /* when we're missing a right paren, the empty part preceding
                 * already created an empty arg, adding one to the position, so
                 * let's fix the reporting to avoid being confusing.
                 */
index 49b1c49d952ca3478cd6ebf0f7bcea62076f2822..740e066ef15552ef2352204882816bdbeab1cd8e 100644 (file)
--- a/src/dns.c
+++ b/src/dns.c
@@ -1273,7 +1273,7 @@ int dns_get_ip_from_response(struct dns_response_packet *dns_p,
                /* Check for preferred network. */
                for (j = 0; j < dns_opts->pref_net_nb; j++) {
 
-                       /* Compare only the same adresses class. */
+                       /* Compare only the same addresses class. */
                        if (dns_opts->pref_net[j].family != ip_type)
                                continue;
 
@@ -1698,7 +1698,7 @@ int dns_link_resolution(void *requester, int requester_type, int requester_locke
        return -1;
 }
 
-/* Removes a requester from a DNS resoltion. It takes takes care of all the
+/* Removes a requester from a DNS resolution. It takes takes care of all the
  * consequences. It also cleans up some parameters from the requester.
  */
 void dns_unlink_resolution(struct dns_requester *requester)
index 212ea236038955a4c7ecc24e4cd4695bf1a629ef..d7285bfa6bbfc372f670f5125525036854ba8272 100644 (file)
@@ -702,7 +702,7 @@ static int cfg_fcgi_apps_postparser()
                                struct sink *sink = sink_find(logsrv->ring_name);
 
                                if (!sink || sink->type != SINK_TYPE_BUFFER) {
-                                       ha_alert("config : fcgi-app '%s' : log server uses unkown ring named '%s'.\n",
+                                       ha_alert("config : fcgi-app '%s' : log server uses unknown ring named '%s'.\n",
                                                 curapp->name, logsrv->ring_name);
                                        err_code |= ERR_ALERT | ERR_FATAL;
                                }
index 664124980a6518877a2176114e7981565258f242..87f359d03af6af55e0172f233dbbe7afdce32aeb 100644 (file)
@@ -458,7 +458,7 @@ select_compression_request_header(struct comp_state *st, struct stream *s, struc
 }
 
 /*
- * Selects a comression algorithm depending of the server response.
+ * Selects a compression algorithm depending of the server response.
  */
 static int
 select_compression_response_header(struct comp_state *st, struct stream *s, struct http_msg *msg)
index 7537d93f150477e5b37b5b00d78720325669fd5c..786dd167f676fb1456917e3446f8d4255379f291 100644 (file)
@@ -7,8 +7,8 @@
  * as published by the Free Software Foundation; either version
  * 2 of the License, or (at your option) any later version.
  *
- * Please refer to RFC7230 - RFC7235 informations about HTTP protocol, and
- * RFC6265 for informations about cookies usage. More generally, the IETF HTTP
+ * Please refer to RFC7230 - RFC7235 information about HTTP protocol, and
+ * RFC6265 for information about cookies usage. More generally, the IETF HTTP
  * Working Group's web site should be consulted for protocol related changes :
  *
  *     http://ftp.ics.uci.edu/pub/ietf/http/
@@ -194,7 +194,7 @@ int unstoppable_jobs = 0;  /* number of active jobs that can't be stopped during
 int active_peers = 0; /* number of active peers (connection attempts and connected) */
 int connected_peers = 0; /* number of connected peers (verified ones) */
 
-/* Here we store informations about the pids of the processes we may pause
+/* Here we store information about the pids of the processes we may pause
  * or kill. We will send them a signal every 10 ms until we can bind to all
  * our ports. With 200 retries, that's about 2 seconds.
  */
@@ -1215,7 +1215,7 @@ static int get_old_sockets(const char *unixsocket)
                                }
                                /*
                                 * Be paranoid and use memcpy() to avoid any
-                                * potential alignement issue.
+                                * potential alignment issue.
                                 */
                                memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
                                got_fd += totlen / sizeof(int);
index 18c830778c777ceeb6527ce5b6e51ed5025c4a38..6ff0a6607e3a3a7084e93cc410d5746717053ed5 100644 (file)
@@ -94,7 +94,7 @@
  *  - The converters wrapper function
  *  - The sample-fetch wrapper functions
  *
- * It is tolerated that the initilisation function returns an abort.
+ * It is tolerated that the initialisation function returns an abort.
  * Before each Lua abort, an error message is written on stderr.
  *
  * The macro SET_SAFE_LJMP initialise the longjmp. The Macro
@@ -994,7 +994,7 @@ static int hlua_ctx_renew(struct hlua *lua, int keep_msg)
        /* Copy data between the coroutines. */
        lua_rawgeti(lua->T, LUA_REGISTRYINDEX, lua->Mref);
        lua_xmove(lua->T, T, 1);
-       new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Valur poped. */
+       new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Value popped. */
 
        /* Destroy old data. */
        luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
index 7278cad58887520a15cc009f19f8366c4b003744..937d4d0d076f524d7addf3422f1809cf87f28052 100644 (file)
@@ -288,7 +288,7 @@ const char *http_err_msgs[HTTP_ERR_SIZE] = {
        "Cache-Control: no-cache\r\n"
        "Content-Type: text/html\r\n"
        "\r\n"
-       "<html><body><h1>500 Internal Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
+       "<html><body><h1>500 Internal Server Error</h1>\nAn internal server error occurred.\n</body></html>\n",
 
        [HTTP_ERR_502] =
        "HTTP/1.1 502 Bad Gateway\r\n"
@@ -439,7 +439,7 @@ const char *http_get_reason(unsigned int status)
        case 503: return "Service Unavailable";
        case 504: return "Gateway Time-out";
        case 505: return "HTTP Version not supported";
-       case 506: return "Variant also negociate";
+       case 506: return "Variant also negotiate";
        case 507: return "Insufficient storage";
        case 508: return "Loop detected";
        case 509: return "Bandwidth Limit Exceeded";
@@ -691,7 +691,7 @@ char *http_extract_cookie_value(char *hdr, const char *hdr_end,
                        att_end = equal;
                }
 
-               /* here, <equal> points to '=', a delimitor or the end. <att_end>
+               /* here, <equal> points to '=', a delimiter or the end. <att_end>
                 * is between <att_beg> and <equal>, both may be identical.
                 */
 
@@ -705,7 +705,7 @@ char *http_extract_cookie_value(char *hdr, const char *hdr_end,
                        /* find the end of the value, respecting quotes */
                        next = http_find_cookie_value_end(val_beg, hdr_end);
 
-                       /* make val_end point to the first white space or delimitor after the value */
+                       /* make val_end point to the first white space or delimiter after the value */
                        val_end = next;
                        while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
                                val_end--;
@@ -1010,7 +1010,7 @@ int http_parse_stline(const struct ist line, struct ist *p1, struct ist *p2, str
         /* Skip spaces between p2 and p3 */
         for (; p < end && HTTP_IS_SPHT(*p); p++);
 
-        /* The remaing is the third value */
+        /* The remaining is the third value */
         p3->ptr = p;
         p3->len = end - p;
 
index 28377d6f37e733b15206cb1043c660d6b0abd573..f394f987432c7e18e1027117f538c3d205c728ae 100644 (file)
@@ -773,7 +773,7 @@ int http_process_request(struct stream *s, struct channel *req, int an_bit)
                 * uri.ptr and path.ptr (excluded). If it was not found, we need
                 * to replace from all the uri by a single "/".
                 *
-                * Instead of rewritting the whole start line, we just update
+                * Instead of rewriting the whole start line, we just update
                 * the star-line URI. Some space will be lost but it should be
                 * insignificant.
                 */
index 390d85a7951d5c4fd35fd314678871f0d042db35..4afa6a2fd696a426215bf06c1ecc8a22b5d44e04 100644 (file)
@@ -119,7 +119,7 @@ static int sample_conv_q_preferred(const struct arg *args, struct sample *smp, v
                if (al >= end)
                        break;
 
-               /* Start of the fisrt word. */
+               /* Start of the first word. */
                token = al;
 
                /* Look for separator: isspace(), ',' or ';'. Next value if 0 length word. */
index 0d53afdf13cdeaa04bc77889fccc64c5c1dd6479..7f1af14fb06dc4278a7e035c5d2f19f07c1df8a7 100644 (file)
@@ -262,7 +262,7 @@ struct htx *smp_prefetch_htx(struct sample *smp, struct channel *chn, struct che
                        return NULL;
                }
 
-               /* OK we just got a valid HTTP mesage. We have to convert it
+               /* OK we just got a valid HTTP message. We have to convert it
                 * into an HTX message.
                 */
                if (unlikely(h1sl.rq.v.len == 0)) {
@@ -1726,7 +1726,7 @@ static int smp_fetch_cookie_val(const struct arg *args, struct sample *smp, cons
 /************************************************************************/
 
 /* This scans a URL-encoded query string. It takes an optionally wrapping
- * string whose first contigous chunk has its beginning in ctx->a[0] and end
+ * string whose first contiguous chunk has its beginning in ctx->a[0] and end
  * in ctx->a[1], and the optional second part in (ctx->a[2]..ctx->a[3]). The
  * pointers are updated for next iteration before leaving.
  */
@@ -1830,7 +1830,7 @@ static int smp_fetch_url_param(const struct arg *args, struct sample *smp, const
 /* This function iterates over each parameter of the body. This requires
  * that the body has been waited for using http-buffer-request. It uses
  * ctx->a[0] and ctx->a[1] to store the beginning and end of the first
- * contigous part of the body, and optionally ctx->a[2..3] to reference the
+ * contiguous part of the body, and optionally ctx->a[2..3] to reference the
  * optional second part if the body wraps at the end of the buffer. An optional
  * parameter name is passed in args[0], otherwise any parameter is considered.
  */
index f4eda3e5e289328c5222e0c4db5b5e204ff82202..91acee54f03d96893ea92aff6dc957b3d9e5f53e 100644 (file)
--- a/src/htx.c
+++ b/src/htx.c
@@ -235,7 +235,7 @@ static int htx_prepare_blk_expansion(struct htx *htx, struct htx_blk *blk, int32
                ret = 1;
        }
        else if (delta > htx_free_space(htx)) {
-               /* There is not enought space to handle the expansion */
+               /* There is not enough space to handle the expansion */
                ret = 0;
        }
        else if (blk->addr+sz == htx->tail_addr) {
index beaf1a10467f123eb960ae980d6d376b507edcaa..6ec8d27cabe9a0b7d926f28e63d2af91c2401c37 100644 (file)
@@ -1883,7 +1883,7 @@ static int h2_send_empty_data_es(struct h2s *h2s)
        return ret;
 }
 
-/* wake a specific stream and assign its conn_stream som CS_FL_* flags among
+/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
  * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
  * is automatically updated accordingly. If the stream is orphaned, it is
  * destroyed.
@@ -2829,7 +2829,7 @@ static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
                         * sending RST_STREAM (aborted stream).
                         *
                         * In addition, since our CLOSED streams always carry the
-                        * RST_RCVD bit, we don't want to accidently catch valid
+                        * RST_RCVD bit, we don't want to accidentally catch valid
                         * frames for a closed stream, i.e. RST/PRIO/WU.
                         */
                        h2s_error(h2s, H2_ERR_STREAM_CLOSED);
@@ -3100,7 +3100,7 @@ static void h2_process_demux(struct h2c *h2c)
                        break;
 
                case H2_FT_CONTINUATION:
-                       /* RFC7540#6.10: CONTINUATION may only be preceeded by
+                       /* RFC7540#6.10: CONTINUATION may only be preceded by
                         * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
                         * frames' parsers consume all following CONTINUATION
                         * frames so this one is out of sequence.
@@ -6181,7 +6181,7 @@ static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *
 
 
 /****************************************/
-/* MUX initialization and instanciation */
+/* MUX initialization and instantiation */
 /***************************************/
 
 /* The mux operations */
index bbfcf5ba9698f5054a21c8a5e739a9b5d4bb614d..9a96fb862c338814b411346b15df0535e9cdcd14 100644 (file)
@@ -80,7 +80,7 @@ static struct task *mux_pt_io_cb(struct task *t, void *tctx, unsigned short stat
 /* Initialize the mux once it's attached. It is expected that conn->ctx
  * points to the existing conn_stream (for outgoing connections) or NULL (for
  * incoming ones, in which case one will be allocated and a new stream will be
- * instanciated). Returns < 0 on error.
+ * instantiated). Returns < 0 on error.
  */
 static int mux_pt_init(struct connection *conn, struct proxy *prx, struct session *sess,
                       struct buffer *input)
@@ -148,7 +148,7 @@ static int mux_pt_wake(struct connection *conn)
        }
 
        /* If we had early data, and we're done with the handshake
-        * then whe know the data are safe, and we can remove the flag.
+        * then we know the data are safe, and we can remove the flag.
         */
        if ((conn->flags & (CO_FL_EARLY_DATA | CO_FL_EARLY_SSL_HS | CO_FL_WAIT_XPRT)) ==
            CO_FL_EARLY_DATA)
index 47582e452b575a407956822e3fc6b1f5220bc954..fcea37ec1c845def8caacc5a206aea4fc81ace4c 100644 (file)
@@ -2141,7 +2141,7 @@ static inline void init_accepted_peer(struct peer *peer, struct peers *peers)
 
        /* if current peer is local */
        if (peer->local) {
-               /* if current host need resyncfrom local and no process assined  */
+               /* if current host need resyncfrom local and no process assigned  */
                if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL &&
                    !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
                        /* assign local peer for a lesson, consider lesson already requested */
@@ -2195,7 +2195,7 @@ static inline void init_connected_peer(struct peer *peer, struct peers *peers)
 }
 
 /*
- * IO Handler to handle message exchance with a peer
+ * IO Handler to handle message exchange with a peer
  */
 static void peer_io_handler(struct appctx *appctx)
 {
index d1e89e4075b565f1783887d97ddcc29f687282dd..9f0309672aa8188585e9f9ea744dd1c8a823e779 100644 (file)
@@ -1640,7 +1640,7 @@ smp_fetch_fc_lost(const struct arg *args, struct sample *smp, const char *kw, vo
        return 1;
 }
 
-/* get the retrans counter on a client connexion */
+/* get the retrans counter on a client connection */
 static int
 smp_fetch_fc_retrans(const struct arg *args, struct sample *smp, const char *kw, void *private)
 {
index 503be0378ab6e46b3d74b741a8ca11313d418723..95da30353487b0cddd09948da8034ca6f36bf105 100644 (file)
@@ -144,7 +144,7 @@ int regex_exec_match(const struct my_regex *preg, const char *subject,
 
        /* Silently limit the number of allowed matches. max
         * match i the maximum value for match, in fact this
-        * limit is not applyied.
+        * limit is not applied.
         */
 
        enmatch = nmatch;
@@ -218,7 +218,7 @@ int regex_exec_match(const struct my_regex *preg, const char *subject,
  * <subject> can be modified during the processing. If the function doesn't
  * match, it returns false, else it returns true.
  * When it is compiled with standard POSIX regex or PCRE, this function add
- * a temporary null chracters at the end of the <subject>. The <subject> must
+ * a temporary null characters at the end of the <subject>. The <subject> must
  * have a real length of <length> + 1. Currently the only supported flag is
  * REG_NOTBOL.
  */
@@ -238,7 +238,7 @@ int regex_exec_match2(const struct my_regex *preg, char *subject, int length,
 
        /* Silently limit the number of allowed matches. max
         * match i the maximum value for match, in fact this
-        * limit is not applyied.
+        * limit is not applied.
         */
        enmatch = nmatch;
        if (enmatch > MAX_MATCH)
index faf6471c0fb279bc6bbbcddbb4150e29835b088a..e09b4c09fdeff3327d79c2b3a3fef78bd0f3e074 100644 (file)
@@ -1034,7 +1034,7 @@ out_error:
  *
  * Note: the fetch functions are required to properly set the return type. The
  * conversion functions must do so too. However the cast functions do not need
- * to since they're made to cast mutiple types according to what is required.
+ * to since they're made to cast multiple types according to what is required.
  *
  * The caller may indicate in <opt> if it considers the result final or not.
  * The caller needs to check the SMP_F_MAY_CHANGE flag in p->flags to verify
@@ -2772,7 +2772,7 @@ static inline long long int arith_add(long long int a, long long int b)
         * +------+----------+----------+
         */
        if ((a ^ b) >= 0) {
-               /* signs are differents. */
+               /* signs are different. */
                if (a < 0) {
                        if (LLONG_MIN - a > b)
                                return LLONG_MIN;
@@ -2849,7 +2849,7 @@ static int sample_conv_arith_mul(const struct arg *arg_p,
        }
 
        /* The multiply between LLONG_MIN and -1 returns a
-        * "floting point exception".
+        * "floating point exception".
         */
        if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) {
                smp->data.u.sint = LLONG_MAX;
@@ -2888,7 +2888,7 @@ static int sample_conv_arith_div(const struct arg *arg_p,
 
        if (tmp.data.u.sint) {
                /* The divide between LLONG_MIN and -1 returns a
-                * "floting point exception".
+                * "floating point exception".
                 */
                if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) {
                        smp->data.u.sint = LLONG_MAX;
@@ -2916,7 +2916,7 @@ static int sample_conv_arith_mod(const struct arg *arg_p,
 
        if (tmp.data.u.sint) {
                /* The divide between LLONG_MIN and -1 returns a
-                * "floting point exception".
+                * "floating point exception".
                 */
                if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) {
                        smp->data.u.sint = 0;
index e273df4f28a0668e2cd06576d7c4676283b3fb11..e8eef854852f2f5a2681b3e5db9184544d11009c 100644 (file)
@@ -141,7 +141,7 @@ struct sink *sink_new_buf(const char *name, const char *desc, enum sink_fmt fmt,
 }
 
 /* tries to send <nmsg> message parts (up to 8, ignored above) from message
- * array <msg> to sink <sink>. Formating according to the sink's preference is
+ * array <msg> to sink <sink>. Formatting according to the sink's preference is
  * done here. Lost messages are NOT accounted for. It is preferable to call
  * sink_write() instead which will also try to emit the number of dropped
  * messages when there are any. It returns >0 if it could write anything,
index aa7361fbb4f02f265150cfb1b15d6cc3c35eabd4..ec74c179df880ceb7353b0424976b9889022c116 100644 (file)
@@ -153,7 +153,7 @@ end:
 
 #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
 /*
- * This function load the OCSP Resonse in DER format contained in file at
+ * This function load the OCSP Response in DER format contained in file at
  * path 'ocsp_path' or base64 in a buffer <buf>
  *
  * Returns 0 on success, 1 in error case.
index a6cfa8ebd4f33b2b9eccadef69d41acefbdc7dd6..a665a85b1948dce16901159a69897a47ce465fb3 100644 (file)
@@ -169,7 +169,7 @@ int _tv_isgt(const struct timeval *tv1, const struct timeval *tv2)
  * An offset is used to adjust the current time (date), to have a monotonic time
  * (now). It must be global and thread-safe. But a timeval cannot be atomically
  * updated. So instead, we store it in a 64-bits integer (offset) whose 32 MSB
- * contain the signed seconds adjustment andthe 32 LSB contain the unsigned
+ * contain the signed seconds adjustment and the 32 LSB contain the unsigned
  * microsecond adjustment. We cannot use a timeval for this since it's never
  * clearly specified whether a timeval may hold negative values or not.
  */
index f4f96a6d0707970c800e24b670136e32cb0df06f..7f98acf4fb8f96dd107326fc65d873f5348a2caf 100644 (file)
@@ -4518,7 +4518,7 @@ const void *resolve_sym_name(struct buffer *buf, const char *pfx, void *addr)
 
 /*
  * Allocate an array of unsigned int with <nums> as address from <str> string
- * made of integer sepereated by dot characters.
+ * made of integer separated by dot characters.
  *
  * First, initializes the value with <sz> as address to 0 and initializes the
  * array with <nums> as address to NULL. Then allocates the array with <nums> as
@@ -4733,7 +4733,7 @@ void ha_generate_uuid(struct buffer *output)
                outpos++;                                              \
        } while (0)
 
-/* Parse <in>, copy it into <out> splitted into isolated words whose pointers
+/* Parse <in>, copy it into <out> split into isolated words whose pointers
  * are put in <args>. If more than <outlen> bytes have to be emitted, the
  * extraneous ones are not emitted but <outlen> is updated so that the caller
  * knows how much to realloc. Similarly, <args> are not updated beyond <nbargs>
index fd95eed5d7e0de536323f775a486c416494d8f4f..49937fee61024b93b2ea7c5416e0daf8fe167251 100644 (file)
@@ -189,7 +189,7 @@ void vars_prune_per_sess(struct vars *vars)
        _HA_ATOMIC_SUB(&var_global_size, size);
 }
 
-/* This function init a list of variabes. */
+/* This function init a list of variables. */
 void vars_init(struct vars *vars, enum vars_scope scope)
 {
        LIST_INIT(&vars->head);