diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-10-24 13:43:19 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-10-24 13:43:19 +0000 |
commit | 3d7f00d41491067e93739c4ff2b851f64075d1e6 (patch) | |
tree | 587882353da409a4ba5ee4b7a578b773f52a8aa3 /src/core/ngx_unix_domain.h | |
parent | 7063343a6c80653adbf12e6959a029e154826f6b (diff) | |
download | nginx-3d7f00d41491067e93739c4ff2b851f64075d1e6.tar.gz nginx-3d7f00d41491067e93739c4ff2b851f64075d1e6.zip |
axe src/core/ngx_unix_domain.*
Diffstat (limited to 'src/core/ngx_unix_domain.h')
-rw-r--r-- | src/core/ngx_unix_domain.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/core/ngx_unix_domain.h b/src/core/ngx_unix_domain.h deleted file mode 100644 index 2c1de83b0..000000000 --- a/src/core/ngx_unix_domain.h +++ /dev/null @@ -1,29 +0,0 @@ - -/* - * Copyright (C) Igor Sysoev - */ - - -#ifndef _NGX_UNIX_DOMAIN_H_INCLUDED_ -#define _NGX_UNIX_DOMAIN_H_INCLUDED_ - - -#include <ngx_config.h> -#include <ngx_core.h> - - -typedef struct { - ngx_str_t name; /* "schema:unix:path:/uri" */ - ngx_str_t url; /* "unix:path:/uri" */ - ngx_str_t uri; - - ngx_uint_t uri_part; /* unsigned uri_part:1; */ -} ngx_unix_domain_upstream_t; - - -ngx_peers_t *ngx_unix_upstream_parse(ngx_conf_t *cf, - ngx_unix_domain_upstream_t *u); - - -#endif /* _NGX_UNIX_DOMAIN_H_INCLUDED_ */ - |