mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-01 08:48:29 +00:00
[tls socket] indentation problem
This commit is contained in:
parent
222cb6ba73
commit
66f57f0f34
1 changed files with 9 additions and 7 deletions
|
@ -259,13 +259,15 @@ static int tls_tostring(lua_State *L) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct luaL_Reg tls_methods[] = {{"connect", tls_connect},
|
static const struct luaL_Reg tls_methods[] = {
|
||||||
{"write", tls_write},
|
{"connect", tls_connect},
|
||||||
{"read", tls_read},
|
{"write", tls_write},
|
||||||
{"close", tls_close},
|
{"read", tls_read},
|
||||||
{"__gc", tls_gc},
|
{"close", tls_close},
|
||||||
{"__tostring", tls_tostring},
|
{"__gc", tls_gc},
|
||||||
{NULL, NULL}};
|
{"__tostring", tls_tostring},
|
||||||
|
{NULL, NULL}
|
||||||
|
};
|
||||||
|
|
||||||
static const struct luaL_Reg tlslib[] = {{"socket", tls_socket}, {NULL, NULL}};
|
static const struct luaL_Reg tlslib[] = {{"socket", tls_socket}, {NULL, NULL}};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue