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

« back to all changes in this revision

Viewing changes to src/core/ngx_murmurhash.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Lustfield
  • Date: 2011-05-09 00:36:54 UTC
  • mfrom: (4.2.32 sid)
  • Revision ID: james.westby@ubuntu.com-20110509003654-ovgx2o0puujktwu6
Tags: 1.0.1-1
* New upstream release
* debian/rules:
  + Removed if surrounding copy of man/ as it is required for builds.
  + Added nginx-upload-progress to nginx-extras. (Closes: #618306)
  + Added nginx-secure-downloads to nginx-extras. (Closes: #622268)
  + Added --prefix to configure command. (Closes: #619482)
* debian/modules:
  + Added nginx-upload-progress/*.
  + Added nginx-secure-download/*.
  + Updated nginx-lua/*.
  + Updated versions.
* debian/control:
  + Added libmhash-dev build dependency.
  + Updated Standards-Version to 3.9.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/*
 
3
 * Copyright (C) Igor Sysoev
 
4
 */
 
5
 
 
6
 
 
7
#ifndef _NGX_MURMURHASH_H_INCLUDED_
 
8
#define _NGX_MURMURHASH_H_INCLUDED_
 
9
 
 
10
 
 
11
#include <ngx_config.h>
 
12
#include <ngx_core.h>
 
13
 
 
14
 
 
15
uint32_t ngx_murmur_hash2(u_char *data, size_t len);
 
16
 
 
17
 
 
18
#endif /* _NGX_CRC_H_INCLUDED_ */