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;
|
||||
}
|
||||
|
||||
static const struct luaL_Reg tls_methods[] = {{"connect", tls_connect},
|
||||
static const struct luaL_Reg tls_methods[] = {
|
||||
{"connect", tls_connect},
|
||||
{"write", tls_write},
|
||||
{"read", tls_read},
|
||||
{"close", tls_close},
|
||||
{"__gc", tls_gc},
|
||||
{"__tostring", tls_tostring},
|
||||
{NULL, NULL}};
|
||||
{NULL, NULL}
|
||||
};
|
||||
|
||||
static const struct luaL_Reg tlslib[] = {{"socket", tls_socket}, {NULL, NULL}};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue