File: TODO

package info (click to toggle)
atftp 0.6.0woody1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 672 kB
  • ctags: 289
  • sloc: ansic: 3,788; sh: 2,619; makefile: 69
file content (30 lines) | stat: -rw-r--r-- 653 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Client
------
*

Server
------

* Use mmap instead of read/write. This way, we'll benefit from zero copy
  networking in 2.4.x

Both
----
* Support IPv6

* Add netascii and octet transfer support.
/*
 * fill the input buffer, doing ascii conversions if requested
 * conversions are  lf -> cr,lf  and cr -> cr, nul
 */
/*
 * Output a buffer to a file, converting from netascii if requested.
 * CR,NUL -> CR  and CR,LF => LF.
 * Note spec is undefined if we get CR as last byte of file or a
 * CR followed by anything else.  In this case we leave it alone.
 */

* Decide what to do when we got memory allocation failure (other than exit)

Generic
-------