curl_ws_meta(3) | libcurl Manual | curl_ws_meta(3) |
curl_ws_meta - meta data WebSocket information
#include <curl/easy.h> struct curl_ws_frame {
int age; /* zero */
int flags; /* See the CURLWS_* defines */
curl_off_t offset; /* the offset of this data into the frame */
curl_off_t bytesleft; /* number of pending bytes left of the payload */ }; struct curl_ws_frame *curl_ws_meta(CURL *curl);
This function call is EXPERIMENTAL.
When the write callback (CURLOPT_WRITEFUNCTION(3)) is invoked on received WebSocket traffic, curl_ws_meta(3) can be called from within the callback to provide additional information about the current frame.
This function only works from within the callback, and only when receiving WebSocket data.
This function requires an easy handle as input argument for libcurl to know what transfer the question is about, but as there is no such pointer provided to the callback by libcurl itself, applications that want to use curl_ws_meta(3) need to pass it on to the callback on its own.
/* we pass a pointer to this struct to the callback */ struct customdata {
CURL *easy;
void *ptr; }; static size_t writecb(unsigned char *buffer,
size_t size, size_t nitems, void *p) {
struct customdata *c = (struct customdata *)p;
struct curl_ws_frame *m = curl_ws_meta(c->easy);
/* m->flags tells us about the traffic */ } {
struct customdata custom;
custom.easy = easy;
custom.ptr = NULL;
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writecb);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &custom); }
Added in 7.86.0.
This function returns a pointer to a curl_ws_frame struct with information that is valid for this specific callback invocation. If it cannot return this information, or if the function is called in the wrong context, it returns NULL.
curl_easy_setopt(3), curl_easy_getinfo(3), curl_ws_send(3), curl_ws_recv(3),
January 2, 2023 | libcurl 7.88.1 |