VLC  4.0.0-dev
h2output.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * h2output.h: HTTP/2 send queue declarations
3  *****************************************************************************
4  * Copyright (C) 2015 RĂ©mi Denis-Courmont
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation; either version 2.1 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19  *****************************************************************************/
20 
21 /**
22  * \defgroup h2_output HTTP/2 output
23  * \ingroup h2
24  * @{
25  */
26 
27 struct vlc_h2_output;
28 struct vlc_h2_frame;
29 struct vlc_tls;
30 
31 int vlc_h2_output_send_prio(struct vlc_h2_output *, struct vlc_h2_frame *);
32 int vlc_h2_output_send(struct vlc_h2_output *, struct vlc_h2_frame *);
33 
34 struct vlc_h2_output *vlc_h2_output_create(struct vlc_tls *, bool client);
36 
37 /** @} */
void vlc_h2_output_destroy(struct vlc_h2_output *)
Definition: h2output.c:331
int vlc_h2_output_send(struct vlc_h2_output *, struct vlc_h2_frame *)
Definition: h2output.c:120
Transport layer socket.
Definition: vlc_tls.h:65
struct vlc_h2_output * vlc_h2_output_create(struct vlc_tls *, bool client)
Definition: h2output.c:302
Definition: h2output.c:47
int vlc_h2_output_send_prio(struct vlc_h2_output *, struct vlc_h2_frame *)
Definition: h2output.c:115
Definition: h2frame.h:30