<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.nginx.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.nginx.org/index.php?title=Coding-Standards&amp;feed=atom&amp;action=history</id>
		<title>Coding-Standards - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.nginx.org/index.php?title=Coding-Standards&amp;feed=atom&amp;action=history"/>
		<link rel="alternate" type="text/html" href="http://wiki.nginx.org/index.php?title=Coding-Standards&amp;action=history"/>
		<updated>2013-05-23T19:46:33Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.19.0</generator>

	<entry>
		<id>http://wiki.nginx.org/index.php?title=Coding-Standards&amp;diff=490&amp;oldid=prev</id>
		<title>Fleshgrinder at 18:03, 20 April 2010</title>
		<link rel="alternate" type="text/html" href="http://wiki.nginx.org/index.php?title=Coding-Standards&amp;diff=490&amp;oldid=prev"/>
				<updated>2010-04-20T18:03:13Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{BackHomeDe}}&lt;br /&gt;
Nginx wurde in der [http://de.wikipedia.org/wiki/C_(Programmiersprache) Programmiersprache C] verfasst und weißt konsistente '''Coding-Standars''' auf.&lt;br /&gt;
&lt;br /&gt;
* Vier Leerzeichen Einrückungen, keine Tabs&lt;br /&gt;
* Zwei Leerzeilen zwischen Blöcken bei globalen Blöcken&lt;br /&gt;
* Ausschließlich Standard C-Kommentarstil&lt;br /&gt;
&lt;br /&gt;
== Beispiel ==&lt;br /&gt;
Das Beispiel wurde dem [[Module:ngx_http_fastcgi_module|FastCGI Modul]] entnommen.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
/*&lt;br /&gt;
 * Copyright (C) Igor Sysoev&lt;br /&gt;
 */&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
#include &amp;lt;ngx_config.h&amp;gt;&lt;br /&gt;
#include &amp;lt;ngx_core.h&amp;gt;&lt;br /&gt;
#include &amp;lt;ngx_http.h&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
typedef struct {&lt;br /&gt;
    ngx_http_upstream_conf_t       upstream;&lt;br /&gt;
 &lt;br /&gt;
    ngx_str_t                      index;&lt;br /&gt;
 &lt;br /&gt;
    ngx_array_t                   *flushes;&lt;br /&gt;
    ngx_array_t                   *params_len;&lt;br /&gt;
    ngx_array_t                   *params;&lt;br /&gt;
    ngx_array_t                   *params_source;&lt;br /&gt;
    ngx_array_t                   *catch_stderr;&lt;br /&gt;
 &lt;br /&gt;
    ngx_array_t                   *fastcgi_lengths;&lt;br /&gt;
    ngx_array_t                   *fastcgi_values;&lt;br /&gt;
 &lt;br /&gt;
#if (NGX_HTTP_CACHE)&lt;br /&gt;
    ngx_http_complex_value_t       cache_key;&lt;br /&gt;
#endif&lt;br /&gt;
 &lt;br /&gt;
#if (NGX_PCRE)&lt;br /&gt;
    ngx_regex_t                   *split_regex;&lt;br /&gt;
    ngx_str_t                      split_name;&lt;br /&gt;
#endif&lt;br /&gt;
} ngx_http_fastcgi_loc_conf_t;&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
typedef enum {&lt;br /&gt;
    ngx_http_fastcgi_st_version = 0,&lt;br /&gt;
    ngx_http_fastcgi_st_type,&lt;br /&gt;
    ngx_http_fastcgi_st_request_id_hi,&lt;br /&gt;
    ngx_http_fastcgi_st_request_id_lo,&lt;br /&gt;
    ngx_http_fastcgi_st_content_length_hi,&lt;br /&gt;
    ngx_http_fastcgi_st_content_length_lo,&lt;br /&gt;
    ngx_http_fastcgi_st_padding_length,&lt;br /&gt;
    ngx_http_fastcgi_st_reserved,&lt;br /&gt;
    ngx_http_fastcgi_st_data,&lt;br /&gt;
    ngx_http_fastcgi_st_padding&lt;br /&gt;
} ngx_http_fastcgi_state_e;&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
typedef struct {&lt;br /&gt;
    u_char                        *start;&lt;br /&gt;
    u_char                        *end;&lt;br /&gt;
} ngx_http_fastcgi_split_part_t;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{NavigationDe}}&lt;/div&gt;</summary>
		<author><name>Fleshgrinder</name></author>	</entry>

	</feed>