search for: u_int64_t

Displaying 20 results from an estimated 113 matches for "u_int64_t".

2000 Jan 07
2
problems with compiling on SPARC solaris 2.7
...from includes.h:91, from atomicio.c:26: defines.h:74: redefinition of `u_int16_t' defines.h:74: `u_int16_t' previously declared here defines.h:75: redefinition of `u_int32_t' defines.h:75: `u_int32_t' previously declared here defines.h:76: redefinition of `u_int64_t' defines.h:76: `u_int64_t' previously declared here In file included from config.h:294, from bsd-strlcpy.h:4, from includes.h:92, from atomicio.c:26: defines.h:74: redefinition of `u_int16_t' defines.h:74: `u_int16_t' previously dec...
1999 Dec 30
1
more problems with solaris 7?
...from includes.h:91, from atomicio.c:26: defines.h:73: redefinition of `u_int16_t' defines.h:73: `u_int16_t' previously declared here defines.h:74: redefinition of `u_int32_t' defines.h:74: `u_int32_t' previously declared here defines.h:75: redefinition of `u_int64_t' defines.h:75: `u_int64_t' previously declared here defines.h:102: redefinition of `quad_t' defines.h:102: `quad_t' previously declared here In file included from config.h:289, from bsd-strlcpy.h:4, from includes.h:92, from atomicio...
2013 Feb 06
0
Miscellaneous compiler warnings
...c:494: warning: ignoring return value of ?vasprintf?, declared with attribute warn_unused_result schnorr.c:519: warning: ignoring return value of ?vasprintf?, declared with attribute warn_unused_result krl.c:508: warning: format ?%llu? expects type ?long long unsigned int?, but argument 3 has type ?u_int64_t? krl.c:508: warning: format ?%llu? expects type ?long long unsigned int?, but argument 4 has type ?u_int64_t? krl.c:508: warning: format ?%llu? expects type ?long long unsigned int?, but argument 5 has type ?u_int64_t? krl.c:508: warning: format ?%llu? expects type ?long long unsigned int?, but arg...
2004 Sep 02
2
[LLVMdev] Type uint64_t required but not found
Hi John, configure still exits, when checking for uint64_t. I've attached a patch, that properly will fix it. Either uint64_t or u_int64_t will succeed: Index: configure.ac =================================================================== RCS file: /var/cvs/llvm/llvm/autoconf/configure.ac,v retrieving revision 1.106 diff -u -r1.106 configure.ac --- configure.ac 2 Sep 2004 18:44:44 -0000 1.106 +++ configure.ac 2 Sep 2004 20:13:17 -0...
2004 Sep 02
0
[LLVMdev] Type uint64_t required but not found
Henrik Bach wrote: } Hi John, } } configure still exits, when checking for uint64_t. I've attached a patch, } that properly will fix it. Either uint64_t or u_int64_t will succeed: } } Index: configure.ac } =================================================================== } RCS file: /var/cvs/llvm/llvm/autoconf/configure.ac,v } retrieving revision 1.106 } diff -u -r1.106 configure.ac } --- configure.ac 2 Sep 2004 18:44:44 -0000 1.106 } +++ configure.ac 2 Sep...
2023 Mar 29
1
ChaCha20 Rekey Frequency
...cipher as opposed to OpenSSL implementation. I can't just change the block size because it breaks compatibility. I can do something like as a hack (though it would probably be better to do it with the compat function): if (strstr(enc->name, "chacha")) *max_blocks = (u_int64_t)1 << (16*2); else if (enc->block_size >= 16) *max_blocks = (u_int64_t)1 << (enc->block_size*2); else *max_blocks = ((u_int64_t)1 << 30) / enc->block_size; if (state->rekey_limit) to force it to reduce the rekey rate but I'm deeply unsure of what impact...
2003 Mar 17
0
scp.c: u_int64_t in bwlimit()
u_int64_t has been introduced into scp.c with the new bwlimit function causing some platforms to break. Would this work? ----------------------------------- --- scp.c.old 2003-03-09 17:16:43.000000000 -0800 +++ scp.c 2003-03-16 16:17:57.095520029 -0800 @@ -670,7 +670,7 @@ { static struct timeval bwstart...
2004 Sep 01
1
[LLVMdev] Type uint64_t required but not found
Reid, >Well, if it doesn't break anything else, I'd fix the header file. The >standard type name is supposed to uint64_t not u_int64_t. I would just >change the header file to define both of them, something like: > >typedef u_int64_t uint64_t; > >You could do that in /usr/include/types.h, I've tried it and it doesn't break anything, but ... >or we could add it to a >header file in llvm/include/Config...
2004 Aug 31
2
[LLVMdev] Type uint64_t required but not found
Reid, When configuring LLVM I get this error: ----------------- checking for uint64_t... no configure: error: Type uint64_t required but not found ----------------- However, this type exists as u_int64_t in /usr/include/types.h. The easy way for me is to edit types.h, but I think the right thing is to somehow to test for it on Interix platform. Any thoughts? /Henrik --- Got Freedom? Software Freedom Day 2004 - 28th of August http://www.softwarefreedomday.org/ --- _____________________________...
2004 Aug 31
0
[LLVMdev] Type uint64_t required but not found
Well, if it doesn't break anything else, I'd fix the header file. The standard type name is supposed to uint64_t not u_int64_t. I would just change the header file to define both of them, something like: typedef u_int64_t uint64_t; You could do that in /usr/include/types.h, or we could add it to a header file in llvm/include/Config, ifdef'd for Interix. Reid. On Tue, 2004-08-31 at 12:57, Henrik Bach wrote: > Re...
2023 Mar 29
2
ChaCha20 Rekey Frequency
...plementation. > > I can't just change the block size because it breaks compatibility. I can do > something like as a hack (though it would probably be better to do it with the > compat function): > > if (strstr(enc->name, "chacha")) > *max_blocks = (u_int64_t)1 << (16*2); > else if (enc->block_size >= 16) > *max_blocks = (u_int64_t)1 << (enc->block_size*2); > else > *max_blocks = ((u_int64_t)1 << 30) / enc->block_size; > if (state->rekey_limit) > > to force it to reduce the rekey rate but I...
2023 Mar 29
1
[EXTERNAL] Re: ChaCha20 Rekey Frequency
...o OpenSSL implementation. > > I can't just change the block size because it breaks compatibility. I can do > something like as a hack (though it would probably be better to do it with the > compat function): > > if (strstr(enc->name, "chacha")) > *max_blocks = (u_int64_t)1 << (16*2); > else if (enc->block_size >= 16) > *max_blocks = (u_int64_t)1 << (enc->block_size*2); > else > *max_blocks = ((u_int64_t)1 << 30) / enc->block_size; > if (state->rekey_limit) > > to force it to reduce the rekey rate but I'm dee...
2017 Jun 21
2
Dovecot >=2.2.29 + Filesystem quota = incorrect storage information
...INODES 8 #define QIF_BTIME 16 #define QIF_ITIME 32 #define QIF_LIMITS (QIF_BLIMITS | QIF_ILIMITS) #define QIF_USAGE (QIF_SPACE | QIF_INODES) #define QIF_TIMES (QIF_BTIME | QIF_ITIME) #define QIF_ALL (QIF_LIMITS | QIF_USAGE | QIF_TIMES) struct dqblk { u_int64_t dqb_bhardlimit; /* absolute limit on disk quota blocks alloc */ u_int64_t dqb_bsoftlimit; /* preferred limit on disk quota blocks */ u_int64_t dqb_curspace; /* current quota block count */ u_int64_t dqb_ihardlimit; /* maximum # allocated inodes */ u_int64_t dqb_isoftlimit;...
2023 Mar 29
1
[EXTERNAL] Re: ChaCha20 Rekey Frequency
...I can't just change the block size because it breaks compatibility. I can > do > > something like as a hack (though it would probably be better to do it with > the > > compat function): > > > > if (strstr(enc->name, "chacha")) > > *max_blocks = (u_int64_t)1 << (16*2); > > else if (enc->block_size >= 16) > > *max_blocks = (u_int64_t)1 << (enc->block_size*2); > > else > > *max_blocks = ((u_int64_t)1 << 30) / enc->block_size; > > if (state->rekey_limit) > > > > to force it to re...
2017 Oct 17
0
Dovecot >=2.2.29 + Filesystem quota = incorrect storage information
...; #define QIF_ITIME?????? 32 > #define QIF_LIMITS????? (QIF_BLIMITS | QIF_ILIMITS) > #define QIF_USAGE?????? (QIF_SPACE | QIF_INODES) > #define QIF_TIMES?????? (QIF_BTIME | QIF_ITIME) > #define QIF_ALL???????? (QIF_LIMITS | QIF_USAGE | QIF_TIMES) > > struct dqblk > ? { > ??? u_int64_t dqb_bhardlimit;?? /* absolute limit on disk quota blocks > alloc */ > ??? u_int64_t dqb_bsoftlimit;?? /* preferred limit on disk quota blocks */ > ??? u_int64_t dqb_curspace;???? /* current quota block count */ > ??? u_int64_t dqb_ihardlimit;?? /* maximum # allocated inodes */ > ???...
2017 Jun 20
2
Dovecot >=2.2.29 + Filesystem quota = incorrect storage information
Hi, I have problem with quota storage information in dovecot-2.2.29 (and newer versions, too - 2.2.30.2). I use FS quota backend. ............................ # 2.2.29.1 (e0b76e3): /etc/dovecot/dovecot.conf # OS: Linux 4.4.68-1 x86_64 mail_plugins = quota plugin { quota = fs:User quota:mount=/poczta:user quota2 = fs:Group quota:mount=/poczta:group } protocol imap {
2001 Aug 21
0
[patch] 64 bit types in bitypes.h
...ackage's configure script works] [I'm not subscribed to this list, please cc me on responses. Thanks] I noticed a minor configure problem in OpenSSH 2.9p2. Basically, configure will check sys/types.h for various "sized" prototypes, and then it separately checks for int64_t and u_int64_t. If it doesn't find the standard sized types (int32, int16, etc) it falls back to checking sys/bitypes.h *but* it doesn't check for the 64 bit types in there. It should. The patch below my sig addresses the problem. Also, unless there's a good reason I'm not aware of, the newer...
2004 Sep 01
0
[LLVMdev] Type uint64_t required but not found
...>From: John Criswell <criswell at cs.uiuc.edu> >Date: Wed, 01 Sep 2004 15:16:53 -0500 > >Henrik Bach wrote: >>Reid, >> >>>Well, if it doesn't break anything else, I'd fix the header file. The >>>standard type name is supposed to uint64_t not u_int64_t. I would just >>>change the header file to define both of them, something like: >>> >>>typedef u_int64_t uint64_t; >>> >>>You could do that in /usr/include/types.h, >> >> >>I've tried it and it doesn't break anything, but ... &g...
2001 Jan 23
11
cc & no 64bit int patches
...r.h" +*/ /* Cipher used for encrypting authentication files. */ #define SSH_AUTHFILE_CIPHER SSH_CIPHER_3DES -------------- next part -------------- --- bufaux.c.old Mon Jan 22 18:40:22 2001 +++ bufaux.c Mon Jan 22 19:15:04 2001 @@ -152,6 +152,7 @@ return GET_32BIT(buf); } +#ifdef HAVE_U_INT64_T u_int64_t buffer_get_int64(Buffer *buffer) { @@ -159,6 +160,7 @@ buffer_get(buffer, (char *) buf, 8); return GET_64BIT(buf); } +#endif /* * Stores an integer in the buffer in 4 bytes, msb first. @@ -171,6 +173,7 @@ buffer_append(buffer, buf, 4); } +#ifdef HAVE_U_INT64_T void buf...
2009 Feb 12
2
[patch 1/3] add protocol extension to ATTR message
...============================================ --- ssh.orig/sftp-common.h 2009-02-12 14:11:15.000000000 +0100 +++ ssh/sftp-common.h 2009-02-12 14:11:31.000000000 +0100 @@ -33,12 +33,23 @@ typedef struct Attrib Attrib; /* File attributes */ struct Attrib { u_int32_t flags; + u_int32_t ext_flags; + u_int64_t dev; + u_int64_t ino; + u_int64_t rdev; u_int64_t size; + u_int64_t blocks; + u_int32_t blksize; u_int32_t uid; u_int32_t gid; u_int32_t perm; - u_int32_t atime; - u_int32_t mtime; + u_int32_t nlink; + u_int64_t atime; + u_int64_t mtime; + u_int64_t ctime; + u_int32_t atimensec; + u_int32_t...