/[Apache-SVN]/httpd/flood/trunk/flood_net.h
ViewVC logotype

Contents of /httpd/flood/trunk/flood_net.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 696055 - (show annotations) (download)
Tue Sep 16 21:01:30 2008 UTC (15 years, 10 months ago) by jerenkrantz
File MIME type: text/plain
File size: 1583 byte(s)
Fix up various compiler warnings.

* flood_net_ssl.c, flood_net_ssl.h
  (ssl_read_socket): Switch from int to apr_size_t.
* flood_socket_keepalive.c
  (keepalive_read_chunk, keepalive_load_resp, keepalive_recv_resp): Switch
  from int to apr_size_t.
* flood_round_robin.c
  (round_robin_postprocess): Switch from int to apr_size_t.
* flood_net.c, flood_net.h
  (read_socket): Switch from int to apr_size_t.

1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements. See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 * Originally developed by Aaron Bannert and Justin Erenkrantz, eBuilt.
17 */
18
19 #ifndef __flood_socket_h
20 #define __flood_socket_h
21
22 #include <apr_network_io.h> /* apr_socket_t */
23 #include <apr_poll.h> /* apr_pollfd_t */
24 #include <apr_pools.h> /* apr_pool_t */
25
26 #include "flood_profile.h"
27
28 typedef struct flood_socket_t {
29 apr_socket_t *socket;
30 apr_pollfd_t read_pollset;
31 } flood_socket_t;
32
33 flood_socket_t* open_socket(apr_pool_t *pool, request_t *r,
34 apr_status_t *status);
35 void close_socket(flood_socket_t *s);
36 apr_status_t write_socket(flood_socket_t *s, request_t *r);
37 apr_status_t read_socket(flood_socket_t *s, char *buf, apr_size_t *buflen);
38 apr_status_t check_socket(flood_socket_t *s, apr_pool_t *pool);
39
40 #endif /* __flood_socket_h */

Properties

Name Value
svn:eol-style native

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26