1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-28 17:47:29 +03:00
Rusty Russell 675593221c lib/ccan: namespacize ccan/list to avoid conflict with OpenIndiana's sys/list.h
CCAN includes a little utility called "namespacize" which prepends ccan_ to
all public methods of a module, and fixes up any dependencies it finds.  It's
a little primitive, but it works here.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2012-03-22 01:57:37 +01:00

55 lines
1.3 KiB
C

#include <stdlib.h>
#include <stdbool.h>
#include <time.h>
#include <ccan/list/list.h>
#include "helper.h"
#define ANSWER_TO_THE_ULTIMATE_QUESTION_OF_LIFE_THE_UNIVERSE_AND_EVERYTHING \
(42)
struct opaque {
struct ccan_list_node list;
size_t secret_offset;
char secret_drawer[42];
};
static bool not_randomized = true;
struct opaque *create_opaque_blob(void)
{
struct opaque *blob = calloc(1, sizeof(struct opaque));
if (not_randomized) {
srandom((int)time(NULL));
not_randomized = false;
}
blob->secret_offset = random() % (sizeof(blob->secret_drawer));
blob->secret_drawer[blob->secret_offset] =
ANSWER_TO_THE_ULTIMATE_QUESTION_OF_LIFE_THE_UNIVERSE_AND_EVERYTHING;
return blob;
}
bool if_blobs_know_the_secret(struct opaque *blob)
{
bool answer = true;
int i;
for (i = 0; i < sizeof(blob->secret_drawer) /
sizeof(blob->secret_drawer[0]); i++)
if (i != blob->secret_offset)
answer = answer && (blob->secret_drawer[i] == 0);
else
answer = answer &&
(blob->secret_drawer[blob->secret_offset] ==
ANSWER_TO_THE_ULTIMATE_QUESTION_OF_LIFE_THE_UNIVERSE_AND_EVERYTHING);
return answer;
}
void destroy_opaque_blob(struct opaque *blob)
{
free(blob);
}