diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2003-10-21 01:12:23 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2003-10-21 01:12:23 +0000 |
commit | 9bc4e0648ab4a177293a94425594bdc54c9a84fa (patch) | |
tree | 21c9be82a75382af48b10a75636fadb49c315456 /TODO | |
parent | 24fbcf34707b79ed3d2f6330ea909dfb42a9648b (diff) | |
download | luasocket-9bc4e0648ab4a177293a94425594bdc54c9a84fa.tar.gz luasocket-9bc4e0648ab4a177293a94425594bdc54c9a84fa.tar.bz2 luasocket-9bc4e0648ab4a177293a94425594bdc54c9a84fa.zip |
First version of generic SMTP code and of the base64 encoding.
Gonna rewrite the base64 stuff (found a better way).
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 33 |
1 files changed, 32 insertions, 1 deletions
@@ -1,3 +1,34 @@ | |||
1 | |||
2 | Read about | ||
3 | |||
4 | 250-ENHANCEDSTATUSCODES | ||
5 | 250-PIPELINING | ||
6 | 250-8BITMIME | ||
7 | 250-SIZE | ||
8 | 250-DSN | ||
9 | 250-ETRN | ||
10 | 250-AUTH GSSAPI | ||
11 | 250-DELIVERBY | ||
12 | 250 HELP | ||
13 | |||
14 | Change return of send and receive callbacks to allow for | ||
15 | new functions. "" signals end of transmission. Pass total | ||
16 | number of bytes in request table for HTTP. Callback has nothing | ||
17 | to do with it. | ||
18 | |||
19 | Make sure nobody can fuck up with the metatables... | ||
20 | |||
21 | Create a passive mode option for the FTP (good for firewall). | ||
22 | |||
23 | Use environments in module definitions or declare all local and create the | ||
24 | function with exported symbols later? | ||
25 | |||
26 | local P = {} | ||
27 | complex = P | ||
28 | setfenv(1, P) | ||
29 | |||
30 | Modules should return their namespace table in the end of the chunk. | ||
31 | |||
1 | Adjust dates in all files | 32 | Adjust dates in all files |
2 | 33 | ||
3 | Test the library on every system possible | 34 | Test the library on every system possible |
@@ -7,7 +38,7 @@ Document socket.time and socket.sleep | |||
7 | Implement time critical stuff from code module in C. | 38 | Implement time critical stuff from code module in C. |
8 | Add service name translation. | 39 | Add service name translation. |
9 | 40 | ||
10 | Ajeitar o protocolo da lua_socketlibopen()... | 41 | Ajeitar o protocolo da luaopen_socket()... sei lá qual é. |
11 | 42 | ||
12 | - testar os options! | 43 | - testar os options! |
13 | - adicionar exemplos de expansão: pipe, local, named pipe | 44 | - adicionar exemplos de expansão: pipe, local, named pipe |