~ubuntu-branches/ubuntu/karmic/nginx/karmic

« back to all changes in this revision

Viewing changes to src/os/unix/ngx_freebsd_init.c

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2009-05-31 18:38:56 UTC
  • mfrom: (1.1.11 upstream) (4.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090531183856-lkdgdzr9m731fz92
Tags: 0.7.59-1
* New upstream release, first in Debian for the 0.7 branch. Among other
  issues, it also fixes the problem with wildcard dns names used with SSL.
  (Closes: #515904)
* debian/watch: updated.
* debian/postinst: fixed a bashism. (Closes: #507913)
* debian/conf/nginx.conf: removed default_type. (Closes: #509390)
* debian/control: updated Standards-Version to 3.8.1, no changes needed.
* debian/NEWS.Debian: documented the issues with
  server_names_hash_bucket_size. (Closes: #524785)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
/* FreeBSD 4.9 */
20
20
int     ngx_freebsd_machdep_hlt_logical_cpus;
21
21
 
22
 
/* FreeBSD 5.0 */
23
 
int     ngx_freebsd_kern_ipc_zero_copy_send;
24
 
 
25
22
 
26
23
ngx_uint_t  ngx_freebsd_sendfile_nbytes_bug;
27
24
ngx_uint_t  ngx_freebsd_use_tcp_nopush;
68
65
      &ngx_freebsd_kern_ipc_somaxconn,
69
66
      sizeof(ngx_freebsd_kern_ipc_somaxconn), 0 },
70
67
 
71
 
    { "kern.ipc.zero_copy.send",
72
 
      &ngx_freebsd_kern_ipc_zero_copy_send,
73
 
      sizeof(ngx_freebsd_kern_ipc_zero_copy_send), 0 },
74
 
 
75
68
    { NULL, NULL, 0, 0 }
76
69
};
77
70