diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-22 21:56:02 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-22 21:56:02 +0000 |
commit | 9d44748a0f52a5e96caf806267c5b6169b61e461 (patch) | |
tree | 9186821a63c56709b66539f5c2ec31606eddada8 /perl.h | |
parent | 76c6a4686250b587eb3b7bb07fd68983ded85533 (diff) | |
download | perl-9d44748a0f52a5e96caf806267c5b6169b61e461.tar.gz |
More SOCKS versus 64-bit patches from Jens Hamisch.
p4raw-id: //depot/perl@7818
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -3443,6 +3443,16 @@ typedef struct am_table_short AMTS; # include <libutil.h> /* setproctitle() in some FreeBSDs */ #endif +#ifdef SOCKS_64BIT_BUG +typedef struct __s64_iobuffer { + struct __s64_iobuffer *next, *last; /* Queue pointer */ + PerlIO *fp; /* Assigned file pointer */ + int cnt; /* Buffer counter */ + int size; /* Buffer size */ + int *buffer; /* The buffer */ +} S64_IOB; +#endif + /* and finally... */ #define PERL_PATCHLEVEL_H_IMPLICIT #include "patchlevel.h" |