2012-01-17 18:10:22 +01:00
|
|
|
/*
|
|
|
|
* Spdylay - SPDY Library
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#ifndef SPDYLAY_H
|
|
|
|
#define SPDYLAY_H
|
|
|
|
|
2012-01-18 13:36:29 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-01-17 18:10:22 +01:00
|
|
|
#include <stdlib.h>
|
2012-01-19 17:04:13 +01:00
|
|
|
#include <stdint.h>
|
2012-01-17 18:10:22 +01:00
|
|
|
|
2012-01-24 14:02:24 +01:00
|
|
|
typedef enum {
|
2012-01-19 13:36:13 +01:00
|
|
|
SPDYLAY_ERR_NOMEM = -500,
|
2012-01-24 14:02:24 +01:00
|
|
|
SPDYLAY_ERR_INVALID_ARGUMENT = -501,
|
|
|
|
SPDYLAY_ERR_ZLIB = -502,
|
|
|
|
SPDYLAY_ERR_ZLIB_BUF = -503,
|
|
|
|
SPDYLAY_ERR_WOULDBLOCK = -504,
|
|
|
|
SPDYLAY_ERR_PROTO = -505,
|
|
|
|
SPDYLAY_ERR_CALLBACK_FAILURE = -505,
|
|
|
|
} spdylay_error;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
SPDYLAY_MSG_MORE
|
|
|
|
} spdylay_io_flag;
|
|
|
|
|
2012-01-24 14:56:26 +01:00
|
|
|
struct spdylay_session;
|
|
|
|
typedef struct spdylay_session spdylay_session;
|
|
|
|
|
2012-01-24 14:02:24 +01:00
|
|
|
typedef ssize_t (*spdylay_send_callback)
|
2012-01-24 14:56:26 +01:00
|
|
|
(spdylay_session *session,
|
|
|
|
const uint8_t *data, size_t length, int flags, void *user_data);
|
2012-01-24 14:02:24 +01:00
|
|
|
|
|
|
|
typedef ssize_t (*spdylay_recv_callback)
|
2012-01-24 14:56:26 +01:00
|
|
|
(spdylay_session *session,
|
|
|
|
uint8_t *buf, size_t length, int flags, void *user_data);
|
2012-01-24 14:02:24 +01:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
spdylay_send_callback send_callback;
|
|
|
|
spdylay_recv_callback recv_callback;
|
|
|
|
} spdylay_session_callbacks;
|
|
|
|
|
2012-01-24 14:56:26 +01:00
|
|
|
int spdylay_session_client_new(spdylay_session **session_ptr,
|
|
|
|
const spdylay_session_callbacks *callbacks,
|
|
|
|
void *user_data);
|
2012-01-24 14:02:24 +01:00
|
|
|
|
2012-01-24 14:56:26 +01:00
|
|
|
void spdylay_session_del(spdylay_session *session);
|
2012-01-24 14:02:24 +01:00
|
|
|
|
|
|
|
int spdylay_session_send(spdylay_session *session);
|
|
|
|
|
|
|
|
int spdylay_session_recv(spdylay_session *session);
|
|
|
|
|
|
|
|
int spdylay_session_want_read(spdylay_session *session);
|
|
|
|
|
|
|
|
int spdylay_session_want_write(spdylay_session *session);
|
|
|
|
|
|
|
|
int spdylay_req_submit(spdylay_session *session, const char *path);
|
2012-01-17 18:10:22 +01:00
|
|
|
|
2012-01-18 13:36:29 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-01-17 18:10:22 +01:00
|
|
|
#endif /* SPDYLAY_H */
|