Add the beginnings of an FTP server

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4368 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo
2012-02-04 21:02:45 +00:00
parent 7b0c9374a9
commit c8c29e73a8
9 changed files with 5030 additions and 26 deletions
+3 -1
View File
@@ -52,7 +52,8 @@
/* Protocol families */
#define PF_UNIX 0 /* Local communication */
#define PF_UNSPEC 0 /* Protocol family unspecified */
#define PF_UNIX 1 /* Local communication */
#define PF_LOCAL 1 /* Local communication */
#define PF_INET 2 /* IPv4 Internet protocols */
#define PF_INET6 3 /* IPv6 Internet protocols */
@@ -66,6 +67,7 @@
/* Address families */
#define AF_UNSPEC PF_UNSPEC
#define AF_UNIX PF_UNIX
#define AF_LOCAL PF_LOCAL
#define AF_INET PF_INET