Add the beginnings of an FTP server

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4368 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-02-04 21:02:45 +00:00
parent b2313617a2
commit 041c5430b7
4 changed files with 40 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