last finishing touch to the BeOS patch from Marcin 'Shard' Konicki Daniel

* nanoftp.c nanohttp.c: last finishing touch to the BeOS
  patch from Marcin 'Shard' Konicki
Daniel
This commit is contained in:
Daniel Veillard 2003-09-29 13:29:09 +00:00
parent a9cce9cd0d
commit 89f7f27a9b
3 changed files with 17 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Mon Sep 29 15:23:41 CEST 2003 Daniel Veillard <daniel@veillard.com>
* nanoftp.c nanohttp.c: last finishing touch to the BeOS
patch from Marcin 'Shard' Konicki
Mon Sep 29 15:15:08 CEST 2003 Daniel Veillard <daniel@veillard.com>
* HTMLtree.c SAX2.c c14n.c catalog.c configure.in debugXML.c

View File

@ -99,6 +99,12 @@
#define SOCKLEN_T unsigned int
#endif
#ifdef __BEOS__
#ifndef PF_INET
#define PF_INET AF_INET
#endif
#endif
#define FTP_COMMAND_OK 200
#define FTP_SYNTAX_ERROR 500

View File

@ -101,6 +101,12 @@
#define SOCKET int
#endif
#ifdef __BEOS__
#ifndef PF_INET
#define PF_INET AF_INET
#endif
#endif
#ifndef SOCKLEN_T
#define SOCKLEN_T unsigned int
#endif