Software /
code /
prosody
Comparison
util-src/net.c @ 10480:94cacf9fd0ae
util.*.c: Add static qualifiers everywhere
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sun, 01 Dec 2019 20:25:20 +0100 |
parent | 9150:c1d5f52274cf |
child | 10637:aa304109fa1b |
comparison
equal
deleted
inserted
replaced
10479:d362934437eb | 10480:94cacf9fd0ae |
---|---|
34 #define luaL_setfuncs(L, R, N) luaL_register(L, NULL, R) | 34 #define luaL_setfuncs(L, R, N) luaL_register(L, NULL, R) |
35 #endif | 35 #endif |
36 | 36 |
37 /* Enumerate all locally configured IP addresses */ | 37 /* Enumerate all locally configured IP addresses */ |
38 | 38 |
39 const char *const type_strings[] = { | 39 static const char *const type_strings[] = { |
40 "both", | 40 "both", |
41 "ipv4", | 41 "ipv4", |
42 "ipv6", | 42 "ipv6", |
43 NULL | 43 NULL |
44 }; | 44 }; |