net/websocket/frames.lua
changeset 13254 cfd062d025b0
parent 12978 ba409c67353b
--- a/net/websocket/frames.lua	Wed Jul 26 14:39:36 2023 +0200
+++ b/net/websocket/frames.lua	Sat Jul 29 01:42:19 2023 +0200
@@ -77,7 +77,6 @@
 end
 
 -- XORs the string `str` with the array of bytes `key`
--- TODO: optimize
 local function apply_mask(str, key, from, to)
 	return sxor(str:sub(from or 1, to or -1), key);
 end