~ubuntu-branches/ubuntu/quantal/nginx/quantal-updates

« back to all changes in this revision

Viewing changes to src/core/ngx_connection.h

  • Committer: Bazaar Package Importer
  • Author(s): Kartik Mistry
  • Date: 2011-04-16 13:47:58 UTC
  • mfrom: (4.2.31 sid)
  • Revision ID: james.westby@ubuntu.com-20110416134758-yqca2qp5crh2hw2f
Tags: 1.0.0-2
* debian/rules:
  + Removed --with-file-aio support. Fixed FTBFS on kFreeBSD-* arch
    (Closes: #621882)

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
 
136
136
    ngx_buf_t          *buffer;
137
137
 
 
138
    ngx_queue_t         queue;
 
139
 
138
140
    ngx_atomic_uint_t   number;
139
141
 
140
142
    ngx_uint_t          requests;
150
152
    unsigned            destroyed:1;
151
153
 
152
154
    unsigned            idle:1;
 
155
    unsigned            reusable:1;
153
156
    unsigned            close:1;
154
157
 
155
158
    unsigned            sendfile:1;
186
189
ngx_connection_t *ngx_get_connection(ngx_socket_t s, ngx_log_t *log);
187
190
void ngx_free_connection(ngx_connection_t *c);
188
191
 
 
192
void ngx_reusable_connection(ngx_connection_t *c, ngx_uint_t reusable);
189
193
 
190
194
#endif /* _NGX_CONNECTION_H_INCLUDED_ */