This file is indexed.

/usr/include/cherokee/post.h is in libcherokee-base0-dev 1.2.101-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */

/* Cherokee
 *
 * Authors:
 *      Alvaro Lopez Ortega <alvaro@alobbs.com>
 *
 * Copyright (C) 2001-2011 Alvaro Lopez Ortega
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA.
 */

#ifndef CHEROKEE_POST_H
#define CHEROKEE_POST_H

#include "common.h"
#include "socket.h"


typedef enum {
        post_enc_regular,
        post_enc_chunked
} cherokee_post_encoding_t;

typedef enum {
	cherokee_post_read_header_init,
	cherokee_post_read_header_100cont
} cherokee_post_rh_phase_t;

typedef enum {
	cherokee_post_send_phase_read,
	cherokee_post_send_phase_write
} cherokee_post_send_phase_t;

typedef struct {
	off_t                    len;
	cherokee_boolean_t       has_info;
	cherokee_post_encoding_t encoding;
	cherokee_post_rh_phase_t read_header_phase;
	cherokee_buffer_t        read_header_100cont;
	cherokee_buffer_t        header_surplus;
	cherokee_buffer_t        progress_id;

	struct {
		off_t                      read;
		cherokee_post_send_phase_t phase;
		cherokee_buffer_t          buffer;
	} send;

	struct {
		cherokee_boolean_t         last;
		off_t                      processed;
		cherokee_buffer_t          buffer;
		cherokee_boolean_t         retransmit;
	} chunked;

} cherokee_post_t;

#define POST(x) ((cherokee_post_t *)(x))


CHEROKEE_BEGIN_DECLS

ret_t cherokee_post_init              (cherokee_post_t *post);
ret_t cherokee_post_clean             (cherokee_post_t *post);
ret_t cherokee_post_mrproper          (cherokee_post_t *post);

ret_t cherokee_post_read_header       (cherokee_post_t *post, void *conn);
int   cherokee_post_read_finished     (cherokee_post_t *post);
int   cherokee_post_has_buffered_info (cherokee_post_t *post);


/* Read
 */
ret_t cherokee_post_read              (cherokee_post_t          *post,
				       cherokee_socket_t        *sock_in,
				       cherokee_buffer_t        *buffer);

/* Read + Send
 */
ret_t cherokee_post_send_to_socket    (cherokee_post_t          *post,
				       cherokee_socket_t        *sock_in,
				       cherokee_socket_t        *sock_out,
				       cherokee_buffer_t        *buffer,
				       cherokee_socket_status_t *blocking,
				       cherokee_boolean_t       *did_IO);

ret_t cherokee_post_send_to_fd        (cherokee_post_t          *post,
				       cherokee_socket_t        *sock_in,
				       int                       fd_out,
				       cherokee_buffer_t        *tmp,
				       cherokee_socket_status_t *blocking,
				       cherokee_boolean_t       *did_IO);

CHEROKEE_END_DECLS

#endif /* CHEROKEE_POST_H */