mirror of
https://github.com/moparisthebest/spdylay
synced 2024-11-12 04:25:09 -05:00
20 lines
496 B
ReStructuredText
20 lines
496 B
ReStructuredText
API Reference
|
|
=============
|
|
|
|
Includes
|
|
--------
|
|
|
|
To use the public APIs, include ``spdylay/spdylay.h``::
|
|
|
|
#include <spdylay/spdylay.h>
|
|
|
|
Remarks
|
|
-------
|
|
|
|
Do not call `spdylay_session_send`, `spdylay_session_recv` or
|
|
`spdylay_session_mem_recv` from the spdylay callback functions
|
|
directly or indirectly. It will lead to the crash. You can submit
|
|
requests or frames in the callbacks then call `spdylay_session_send`,
|
|
`spdylay_session_recv` or `spdylay_session_mem_recv` outside of the
|
|
callbacks.
|