xo-umbrella2/xo-websock/include/xo/websock/WebsockUtil.hpp
Roland Conybeare dd1a6b1afc Add 'xo-websock/' from commit '57bf06a68f'
git-subtree-dir: xo-websock
git-subtree-mainline: 97eefaea22
git-subtree-split: 57bf06a68f
2025-05-11 15:08:51 -05:00

18 lines
435 B
C++

/* @file WebsockUtil.hpp */
#pragma once
#include <libwebsockets.h>
namespace xo {
namespace web {
/* class-as-namespace idiom */
class WebsockUtil {
public:
/* string representation for callback category enum */
static char const * ws_callback_reason_descr(lws_callback_reasons x);
}; /*WebsockUtil*/
} /*namespace web*/
} /*namespace xo*/
/* end WebsockUtil.hpp */