Fix spelling throughout the codebase [codespell]

This commit is contained in:
Kim Alvefur 2018-02-04 01:51:25 +01:00
parent 6f6e04b6c6
commit 3ec060fc0c
17 changed files with 35 additions and 35 deletions

View file

@ -7,7 +7,7 @@ Please try to follow, and feel free to fix code you see not following this stand
== Spacing == == Spacing ==
No space between function names and parenthesis and parenthesis and paramters: No space between function names and parenthesis and parenthesis and parameters:
function foo(bar, baz) function foo(bar, baz)

View file

@ -15,7 +15,7 @@ Thorns thought of:
Eclaire - Idem (French) Eclaire - Idem (French)
Adel - Random Adel - Random
Younha - Read as "yuna" Younha - Read as "yuna"
Quezacotl - Mayan gods -> google for correct form and pronounciation Quezacotl - Mayan gods -> google for correct form and pronunciation
Carbuncle - FF8 Guardian Force ^^ Carbuncle - FF8 Guardian Force ^^
Protos - Mars satellite Protos - Mars satellite
mins - Derived from minstrel mins - Derived from minstrel

View file

@ -135,7 +135,7 @@ end
--[[ Links to two handles together, so anything written to one is piped to the other --[[ Links to two handles together, so anything written to one is piped to the other
Arguments: Arguments:
- sender, reciever: handles to link - sender, receiver: handles to link
- buffersize: maximum #bytes until sender will be locked - buffersize: maximum #bytes until sender will be locked
]] ]]
local function link(sender, receiver, buffersize) local function link(sender, receiver, buffersize)

View file

@ -15,7 +15,7 @@ session {
full_jid -- convenience for the above 3 as string in username@host/resource form (not defined before resource binding) full_jid -- convenience for the above 3 as string in username@host/resource form (not defined before resource binding)
priority -- the resource priority, default: 0 priority -- the resource priority, default: 0
presence -- the last non-directed presence with no type attribute. initially nil. reset to nil on unavailable presence. presence -- the last non-directed presence with no type attribute. initially nil. reset to nil on unavailable presence.
interested -- true if the resource requested the roster. Interested resources recieve roster updates. Initially nil. interested -- true if the resource requested the roster. Interested resources receive roster updates. Initially nil.
roster -- the user's roster. Loaded as soon as the resource is bound (session becomes a connected resource). roster -- the user's roster. Loaded as soon as the resource is bound (session becomes a connected resource).
-- methods -- -- methods --

View file

@ -5,9 +5,9 @@
notes: notes:
-- when using luaevent, never register 2 or more EV_READ at one socket, same for EV_WRITE -- when using luaevent, never register 2 or more EV_READ at one socket, same for EV_WRITE
-- you cant even register a new EV_READ/EV_WRITE callback inside another one -- you can't even register a new EV_READ/EV_WRITE callback inside another one
-- to do some of the above, use timeout events or something what will called from outside -- to do some of the above, use timeout events or something what will called from outside
-- dont let garbagecollect eventcallbacks, as long they are running -- don't let garbagecollect eventcallbacks, as long they are running
-- when using luasec, there are 4 cases of timeout errors: wantread or wantwrite during reading or writing -- when using luasec, there are 4 cases of timeout errors: wantread or wantwrite during reading or writing
--]] --]]
@ -157,7 +157,7 @@ function interface_mt:_start_ssl(call_onconnect) -- old socket will be destroyed
self.fatalerror = err self.fatalerror = err
self.conn = nil -- cannot be used anymore self.conn = nil -- cannot be used anymore
if call_onconnect then if call_onconnect then
self.ondisconnect = nil -- dont call this when client isnt really connected self.ondisconnect = nil -- don't call this when client isn't really connected
end end
self:_close() self:_close()
debug( "fatal error while ssl wrapping:", err ) debug( "fatal error while ssl wrapping:", err )
@ -200,7 +200,7 @@ function interface_mt:_start_ssl(call_onconnect) -- old socket will be destroyed
end end
if self.fatalerror then if self.fatalerror then
if call_onconnect then if call_onconnect then
self.ondisconnect = nil -- dont call this when client isnt really connected self.ondisconnect = nil -- don't call this when client isn't really connected
end end
self:_close() self:_close()
debug( "handshake failed because:", self.fatalerror ) debug( "handshake failed because:", self.fatalerror )
@ -229,7 +229,7 @@ function interface_mt:_destroy() -- close this interface + events and call last
_ = self.eventsession and self.eventsession:close( ) _ = self.eventsession and self.eventsession:close( )
_ = self.eventwritetimeout and self.eventwritetimeout:close( ) _ = self.eventwritetimeout and self.eventwritetimeout:close( )
_ = self.eventreadtimeout and self.eventreadtimeout:close( ) _ = self.eventreadtimeout and self.eventreadtimeout:close( )
-- call ondisconnect listener (wont be the case if handshake failed on connect) -- call ondisconnect listener (won't be the case if handshake failed on connect)
_ = self.ondisconnect and self:ondisconnect( self.fatalerror ~= "client to close" and self.fatalerror) _ = self.ondisconnect and self:ondisconnect( self.fatalerror ~= "client to close" and self.fatalerror)
_ = self.conn and self.conn:close( ) -- close connection _ = self.conn and self.conn:close( ) -- close connection
_ = self._server and self._server:counter(-1); _ = self._server and self._server:counter(-1);
@ -517,7 +517,7 @@ local function handleclient( client, ip, port, server, pattern, listener, sslctx
interface.writebuffer = { t_concat(interface.writebuffer) } interface.writebuffer = { t_concat(interface.writebuffer) }
local succ, err, byte = interface.conn:send( interface.writebuffer[1], 1, interface.writebufferlen ) local succ, err, byte = interface.conn:send( interface.writebuffer[1], 1, interface.writebufferlen )
--vdebug( "write data:", interface.writebuffer, "error:", err, "part:", byte ) --vdebug( "write data:", interface.writebuffer, "error:", err, "part:", byte )
if succ then -- writing succesful if succ then -- writing successful
interface.writebuffer[1] = nil interface.writebuffer[1] = nil
interface.writebufferlen = 0 interface.writebufferlen = 0
interface:ondrain(); interface:ondrain();
@ -546,7 +546,7 @@ local function handleclient( client, ip, port, server, pattern, listener, sslctx
return -1; return -1;
end end
interface.eventwritetimeout = addevent( base, nil, EV_TIMEOUT, callback, cfg.WRITE_TIMEOUT ) -- reg a new timeout event interface.eventwritetimeout = addevent( base, nil, EV_TIMEOUT, callback, cfg.WRITE_TIMEOUT ) -- reg a new timeout event
debug( "wantread during write attempt, reg it in readcallback but dont know what really happens next..." ) debug( "wantread during write attempt, reg it in readcallback but don't know what really happens next..." )
-- hopefully this works with luasec; its simply not possible to use 2 different write events on a socket in luaevent -- hopefully this works with luasec; its simply not possible to use 2 different write events on a socket in luaevent
return -1 return -1
end end
@ -602,8 +602,8 @@ local function handleclient( client, ip, port, server, pattern, listener, sslctx
end end
interface.eventreadtimeout = addevent( base, nil, EV_TIMEOUT, interface.eventreadtimeout = addevent( base, nil, EV_TIMEOUT,
function( ) interface:_close() end, cfg.READ_TIMEOUT) function( ) interface:_close() end, cfg.READ_TIMEOUT)
debug( "wantwrite during read attempt, reg it in writecallback but dont know what really happens next..." ) debug( "wantwrite during read attempt, reg it in writecallback but don't know what really happens next..." )
-- to be honest i dont know what happens next, if it is allowed to first read, the write etc... -- to be honest i don't know what happens next, if it is allowed to first read, the write etc...
else -- connection was closed or fatal error else -- connection was closed or fatal error
interface.fatalerror = err interface.fatalerror = err
debug( "connection failed in read event:", interface.fatalerror ) debug( "connection failed in read event:", interface.fatalerror )

View file

@ -132,7 +132,7 @@ _fullservers = { } -- servers in a paused state while there are too many clients
_readlistlen = 0 -- length of readlist _readlistlen = 0 -- length of readlist
_sendlistlen = 0 -- length of sendlist _sendlistlen = 0 -- length of sendlist
_timerlistlen = 0 -- lenght of timerlist _timerlistlen = 0 -- length of timerlist
_sendtraffic = 0 -- some stats _sendtraffic = 0 -- some stats
_readtraffic = 0 _readtraffic = 0
@ -420,7 +420,7 @@ wrapconnection = function( server, listeners, socket, ip, serverport, clientport
bufferlen = bufferlen + #data bufferlen = bufferlen + #data
if bufferlen > maxsendlen then if bufferlen > maxsendlen then
_closelist[ handler ] = "send buffer exceeded" -- cannot close the client at the moment, have to wait to the end of the cycle _closelist[ handler ] = "send buffer exceeded" -- cannot close the client at the moment, have to wait to the end of the cycle
handler.write = idfalse -- dont write anymore handler.write = idfalse -- don't write anymore
return false return false
elseif socket and not _sendlist[ socket ] then elseif socket and not _sendlist[ socket ] then
_sendlistlen = addsocket(_sendlist, socket, _sendlistlen) _sendlistlen = addsocket(_sendlist, socket, _sendlistlen)
@ -531,7 +531,7 @@ wrapconnection = function( server, listeners, socket, ip, serverport, clientport
else else
succ, err, count = false, "unexpected close", 0; succ, err, count = false, "unexpected close", 0;
end end
if succ then -- sending succesful if succ then -- sending successful
bufferqueuelen = 0 bufferqueuelen = 0
bufferlen = 0 bufferlen = 0
_sendlistlen = removesocket( _sendlist, socket, _sendlistlen ) -- delete socket from writelist _sendlistlen = removesocket( _sendlist, socket, _sendlistlen ) -- delete socket from writelist

View file

@ -112,9 +112,9 @@ end
-- TODO: optimize -- TODO: optimize
local function apply_mask(str, key, from, to) local function apply_mask(str, key, from, to)
from = from or 1 from = from or 1
if from < 0 then from = #str + from + 1 end -- negative indicies if from < 0 then from = #str + from + 1 end -- negative indices
to = to or #str to = to or #str
if to < 0 then to = #str + to + 1 end -- negative indicies if to < 0 then to = #str + to + 1 end -- negative indices
local key_len = #key local key_len = #key
local counter = 0; local counter = 0;
local data = {}; local data = {};

View file

@ -369,7 +369,7 @@ local list_s2s_this_result = dataforms_new {
{ name = "FORM_TYPE", type = "hidden", value = "http://prosody.im/protocol/s2s#list" }; { name = "FORM_TYPE", type = "hidden", value = "http://prosody.im/protocol/s2s#list" };
{ name = "sessions", type = "text-multi", label = "Connections:" }; { name = "sessions", type = "text-multi", label = "Connections:" };
{ name = "num_in", type = "text-single", label = "#incomming connections:" }; { name = "num_in", type = "text-single", label = "#incoming connections:" };
{ name = "num_out", type = "text-single", label = "#outgoing connections:" }; { name = "num_out", type = "text-single", label = "#outgoing connections:" };
}; };

View file

@ -13,7 +13,7 @@ local full_sessions = prosody.full_sessions;
if module:get_host_type() == "local" then if module:get_host_type() == "local" then
module:hook("iq/full", function(data) module:hook("iq/full", function(data)
-- IQ to full JID recieved -- IQ to full JID received
local origin, stanza = data.origin, data.stanza; local origin, stanza = data.origin, data.stanza;
local session = full_sessions[stanza.attr.to]; local session = full_sessions[stanza.attr.to];
@ -27,7 +27,7 @@ if module:get_host_type() == "local" then
end end
module:hook("iq/bare", function(data) module:hook("iq/bare", function(data)
-- IQ to bare JID recieved -- IQ to bare JID received
local stanza = data.stanza; local stanza = data.stanza;
local type = stanza.attr.type; local type = stanza.attr.type;
@ -44,7 +44,7 @@ module:hook("iq/bare", function(data)
end); end);
module:hook("iq/self", function(data) module:hook("iq/self", function(data)
-- IQ to self JID recieved -- IQ to self JID received
local stanza = data.stanza; local stanza = data.stanza;
local type = stanza.attr.type; local type = stanza.attr.type;
@ -60,7 +60,7 @@ module:hook("iq/self", function(data)
end); end);
module:hook("iq/host", function(data) module:hook("iq/host", function(data)
-- IQ to a local host recieved -- IQ to a local host received
local stanza = data.stanza; local stanza = data.stanza;
local type = stanza.attr.type; local type = stanza.attr.type;

View file

@ -63,7 +63,7 @@ local function process_to_bare(bare, origin, stanza)
end end
module:hook("message/full", function(data) module:hook("message/full", function(data)
-- message to full JID recieved -- message to full JID received
local origin, stanza = data.origin, data.stanza; local origin, stanza = data.origin, data.stanza;
local session = full_sessions[stanza.attr.to]; local session = full_sessions[stanza.attr.to];
@ -75,7 +75,7 @@ module:hook("message/full", function(data)
end, -1); end, -1);
module:hook("message/bare", function(data) module:hook("message/bare", function(data)
-- message to bare JID recieved -- message to bare JID received
local origin, stanza = data.origin, data.stanza; local origin, stanza = data.origin, data.stanza;
return process_to_bare(stanza.attr.to or (origin.username..'@'..origin.host), origin, stanza); return process_to_bare(stanza.attr.to or (origin.username..'@'..origin.host), origin, stanza);

View file

@ -117,7 +117,7 @@ local function get_caps_hash_from_presence(stanza, current)
end end
module:hook("presence/bare", function(event) module:hook("presence/bare", function(event)
-- inbound presence to bare JID recieved -- inbound presence to bare JID received
local origin, stanza = event.origin, event.stanza; local origin, stanza = event.origin, event.stanza;
local user = stanza.attr.to or (origin.username..'@'..origin.host); local user = stanza.attr.to or (origin.username..'@'..origin.host);
local t = stanza.attr.type; local t = stanza.attr.type;

View file

@ -303,7 +303,7 @@ local function update_subscriptions(recipient, service_name, nodes)
end end
module:hook("presence/bare", function(event) module:hook("presence/bare", function(event)
-- inbound presence to bare JID recieved -- inbound presence to bare JID received
local origin, stanza = event.origin, event.stanza; local origin, stanza = event.origin, event.stanza;
local t = stanza.attr.type; local t = stanza.attr.type;
local is_self = not stanza.attr.to; local is_self = not stanza.attr.to;

View file

@ -253,7 +253,7 @@ function handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_b
end end
local outbound_presence_handler = function(data) local outbound_presence_handler = function(data)
-- outbound presence recieved -- outbound presence received
local origin, stanza = data.origin, data.stanza; local origin, stanza = data.origin, data.stanza;
local to = stanza.attr.to; local to = stanza.attr.to;
@ -281,7 +281,7 @@ module:hook("pre-presence/bare", outbound_presence_handler);
module:hook("pre-presence/host", outbound_presence_handler); module:hook("pre-presence/host", outbound_presence_handler);
module:hook("presence/bare", function(data) module:hook("presence/bare", function(data)
-- inbound presence to bare JID recieved -- inbound presence to bare JID received
local origin, stanza = data.origin, data.stanza; local origin, stanza = data.origin, data.stanza;
local to = stanza.attr.to; local to = stanza.attr.to;
@ -307,7 +307,7 @@ module:hook("presence/bare", function(data)
return true; return true;
end); end);
module:hook("presence/full", function(data) module:hook("presence/full", function(data)
-- inbound presence to full JID recieved -- inbound presence to full JID received
local origin, stanza = data.origin, data.stanza; local origin, stanza = data.origin, data.stanza;
local t = stanza.attr.type; local t = stanza.attr.type;

View file

@ -44,7 +44,7 @@ function listener.onincoming(conn, data)
end -- else error, unexpected input end -- else error, unexpected input
conn:write("\5\255"); -- send (SOCKS version 5, no acceptable method) conn:write("\5\255"); -- send (SOCKS version 5, no acceptable method)
conn:close(); conn:close();
module:log("debug", "Invalid SOCKS5 greeting recieved: '%s'", b64(data)); module:log("debug", "Invalid SOCKS5 greeting received: '%s'", b64(data));
else -- connection request else -- connection request
--local head = string.char( 0x05, 0x01, 0x00, 0x03, 40 ); -- ( VER=5=SOCKS5, CMD=1=CONNECT, RSV=0=RESERVED, ATYP=3=DOMAIMNAME, SHA-1 size ) --local head = string.char( 0x05, 0x01, 0x00, 0x03, 40 ); -- ( VER=5=SOCKS5, CMD=1=CONNECT, RSV=0=RESERVED, ATYP=3=DOMAIMNAME, SHA-1 size )
if #data == 47 and data:sub(1,5) == "\5\1\0\3\40" and data:sub(-2) == "\0\0" then if #data == 47 and data:sub(1,5) == "\5\1\0\3\40" and data:sub(-2) == "\0\0" then
@ -66,7 +66,7 @@ function listener.onincoming(conn, data)
else -- error, unexpected input else -- error, unexpected input
conn:write("\5\1\0\3\0\0\0"); -- VER, REP, RSV, ATYP, BND.ADDR (sha), BND.PORT (2 Byte) conn:write("\5\1\0\3\0\0\0"); -- VER, REP, RSV, ATYP, BND.ADDR (sha), BND.PORT (2 Byte)
conn:close(); conn:close();
module:log("debug", "Invalid SOCKS5 negotiation recieved: '%s'", b64(data)); module:log("debug", "Invalid SOCKS5 negotiation received: '%s'", b64(data));
end end
end end
end end

View file

@ -576,7 +576,7 @@ function room_mt:handle_normal_presence(origin, stanza)
self:route_stanza(pr); self:route_stanza(pr);
end end
if is_first_dest_session and is_last_orig_session then -- Normal nick change if is_first_dest_session and is_last_orig_session then -- Normal nick change
log("debug", "no sessions in %s left; publically marking as nick change", orig_occupant.nick); log("debug", "no sessions in %s left; publicly marking as nick change", orig_occupant.nick);
orig_x:tag("status", {code = "303";}):up(); orig_x:tag("status", {code = "303";}):up();
else -- The session itself always needs to see a nick change else -- The session itself always needs to see a nick change
-- don't want to get our old nick's available presence, -- don't want to get our old nick's available presence,

View file

@ -160,7 +160,7 @@ local function scram_gen(hash_name, H_f, HMAC_f)
end end
self.username = username; self.username = username;
-- retreive credentials -- retrieve credentials
local stored_key, server_key, salt, iteration_count; local stored_key, server_key, salt, iteration_count;
if self.profile.plain then if self.profile.plain then
local password, status = self.profile.plain(self, username, self.realm) local password, status = self.profile.plain(self, username, self.realm)

View file

@ -43,7 +43,7 @@ function startup.read_config()
print("\n"); print("\n");
print("**************************"); print("**************************");
if level == "parser" then if level == "parser" then
print("A problem occured while reading the config file "..filename); print("A problem occurred while reading the config file "..filename);
print(""); print("");
local err_line, err_message = tostring(err):match("%[string .-%]:(%d*): (.*)"); local err_line, err_message = tostring(err):match("%[string .-%]:(%d*): (.*)");
if err:match("chunk has too many syntax levels$") then if err:match("chunk has too many syntax levels$") then