xo-umbrella2/xo-websock/include/xo/websock/WebsockUtil.hpp
Roland Conybeare 578c0ed658 git subrepo clone (merge) git@github.com:Rconybea/xo-websock.git xo-websock
subrepo:
  subdir:   "xo-websock"
  merged:   "c6eec3cd"
upstream:
  origin:   "git@github.com:Rconybea/xo-websock.git"
  branch:   "main"
  commit:   "c6eec3cd"
git-subrepo:
  version:  "0.4.9"
  origin:   "???"
  commit:   "???"
2026-06-06 22:37:35 -04: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 */