diff options
Diffstat (limited to 'src/lib/libcrypto/pqueue/pqueue.h')
-rw-r--r-- | src/lib/libcrypto/pqueue/pqueue.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/lib/libcrypto/pqueue/pqueue.h b/src/lib/libcrypto/pqueue/pqueue.h index 87fc9037c8..729e9abaf2 100644 --- a/src/lib/libcrypto/pqueue/pqueue.h +++ b/src/lib/libcrypto/pqueue/pqueue.h | |||
@@ -1,7 +1,7 @@ | |||
1 | /* crypto/pqueue/pqueue.h */ | 1 | /* crypto/pqueue/pqueue.h */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
5 | */ | 5 | */ |
6 | /* ==================================================================== | 6 | /* ==================================================================== |
7 | * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. | 7 | * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. |
@@ -11,7 +11,7 @@ | |||
11 | * are met: | 11 | * are met: |
12 | * | 12 | * |
13 | * 1. Redistributions of source code must retain the above copyright | 13 | * 1. Redistributions of source code must retain the above copyright |
14 | * notice, this list of conditions and the following disclaimer. | 14 | * notice, this list of conditions and the following disclaimer. |
15 | * | 15 | * |
16 | * 2. Redistributions in binary form must reproduce the above copyright | 16 | * 2. Redistributions in binary form must reproduce the above copyright |
17 | * notice, this list of conditions and the following disclaimer in | 17 | * notice, this list of conditions and the following disclaimer in |
@@ -66,12 +66,11 @@ | |||
66 | 66 | ||
67 | typedef struct _pqueue *pqueue; | 67 | typedef struct _pqueue *pqueue; |
68 | 68 | ||
69 | typedef struct _pitem | 69 | typedef struct _pitem { |
70 | { | ||
71 | unsigned char priority[8]; /* 64-bit value in big-endian encoding */ | 70 | unsigned char priority[8]; /* 64-bit value in big-endian encoding */ |
72 | void *data; | 71 | void *data; |
73 | struct _pitem *next; | 72 | struct _pitem *next; |
74 | } pitem; | 73 | } pitem; |
75 | 74 | ||
76 | typedef struct _pitem *piterator; | 75 | typedef struct _pitem *piterator; |
77 | 76 | ||