コード例 #1
0
ファイル: xattrs.c プロジェクト: Udo/lua-openssl
int openssl_register_xattribute(lua_State*L)
{
  auxiliar_newclass(L, "openssl.x509_attribute", x509_attribute_funs);
  openssl_register_sk_x509_attribute(L);
  luaL_register(L, MYNAME, R);
  return 1;
}
コード例 #2
0
ファイル: xattrs.c プロジェクト: witchu/lua-openssl
int openssl_register_xattribute(lua_State*L)
{
  auxiliar_newclass(L, "openssl.x509_attribute", x509_attribute_funs);
  openssl_register_sk_x509_attribute(L);
  lua_newtable(L);
  luaL_setfuncs(L, R, 0);
  return 1;
}