1 /* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2 
3 #include "proxy.h"
4 
5 static struct proxy_hash_func mcplib_hash_xxhash = {
6     XXH3_64bits_withSeed,
7 };
8 
mcplib_open_hash_xxhash(lua_State * L)9 int mcplib_open_hash_xxhash(lua_State *L) {
10     lua_pushlightuserdata(L, &mcplib_hash_xxhash);
11     return 1;
12 }
13