lib_LTLIBRARIES = libgnunetrps.la
libgnunetrps_la_SOURCES = \
+ gnunet-service-rps_sampler_elem.h gnunet-service-rps_sampler_elem.c \
rps-test_util.h rps-test_util.c \
rps-sampler_common.h rps-sampler_common.c \
rps-sampler_client.h rps-sampler_client.c \
libgnunetrps_la_LDFLAGS = \
$(GN_LIB_LDFLAGS) $(WINFLAGS) \
-version-info 0:0:0
+# Fix 'created both with libtool and without' error:
+libgnunetrps_la_CFLAGS = $(AM_CFLAGS)
libexec_PROGRAMS = \
*/
static unsigned num_bits_buf_unaligned;
-void
-to_file_ (const char *file_name, char *line)
-{
- struct GNUNET_DISK_FileHandle *f;
- char output_buffer[512];
- size_t output_buffer_size = 512;
- char *output_buffer_p;
- //size_t size;
- int size;
- int size2;
-
-
- if (NULL == (f = GNUNET_DISK_file_open (file_name,
- GNUNET_DISK_OPEN_APPEND |
- GNUNET_DISK_OPEN_WRITE |
- GNUNET_DISK_OPEN_CREATE,
- GNUNET_DISK_PERM_USER_READ |
- GNUNET_DISK_PERM_USER_WRITE |
- GNUNET_DISK_PERM_GROUP_READ |
- GNUNET_DISK_PERM_OTHER_READ)))
- {
- LOG (GNUNET_ERROR_TYPE_WARNING,
- "Not able to open file %s\n",
- file_name);
- return;
- }
- output_buffer_size = strlen (line) + 18;
- if (512 < output_buffer_size)
- {
- output_buffer_p = GNUNET_malloc ((output_buffer_size) * sizeof (char));
- } else {
- output_buffer_p = &output_buffer[0];
- }
- size = GNUNET_snprintf (output_buffer_p,
- output_buffer_size,
- "%llu %s\n",
- (GNUNET_TIME_absolute_get ().abs_value_us) / 1000000, // microsec -> sec
- line);
- if (0 > size)
- {
- LOG (GNUNET_ERROR_TYPE_WARNING,
- "Failed to write string to buffer (size: %i)\n",
- size);
- return;
- }
-
- size2 = GNUNET_DISK_file_write (f, output_buffer_p, size);
- if (size != size2)
- {
- LOG (GNUNET_ERROR_TYPE_WARNING,
- "Unable to write to file! (Size: %u, size2: %u)\n",
- size,
- size2);
-
- if (GNUNET_YES != GNUNET_DISK_file_close (f))
- LOG (GNUNET_ERROR_TYPE_WARNING,
- "Unable to close file\n");
-
- return;
- }
-
- if (512 < output_buffer_size)
- {
- GNUNET_free (output_buffer_p);
- }
-
- if (GNUNET_YES != GNUNET_DISK_file_close (f))
- LOG (GNUNET_ERROR_TYPE_WARNING,
- "Unable to close file\n");
-}
void
to_file_raw (const char *file_name, const char *buf, size_t size_buf)
return GNUNET_YES;
}
-const char *
+char *
store_prefix_file_name (const struct GNUNET_PeerIdentity *peer,
const char *prefix)
{
#define TO_FILE 1
-void
-to_file_ (const char *file_name, char *line);
-
char *
auth_key_to_string (struct GNUNET_CRYPTO_AuthKey auth_key);
* This function is used to facilitate writing important information to disk
*/
#ifdef TO_FILE
-# define to_file(file_name, ...) do {char tmp_buf[512];\
+# define to_file(file_name, ...) do {char tmp_buf[512] = "";\
int size;\
size = GNUNET_snprintf(tmp_buf,sizeof(tmp_buf),__VA_ARGS__);\
if (0 > size)\
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,\
"Failed to create tmp_buf\n");\
else\
- to_file_(file_name,tmp_buf);\
+ GNUNET_DISK_fn_write(file_name,tmp_buf, sizeof(tmp_buf),\
+ GNUNET_DISK_PERM_USER_READ |\
+ GNUNET_DISK_PERM_USER_WRITE |\
+ GNUNET_DISK_PERM_GROUP_READ |\
+ GNUNET_DISK_PERM_OTHER_READ);\
} while (0);
-# define to_file_w_len(file_name, len, ...) do {char tmp_buf[len];\
+
+#define to_file_w_len(file_name, len, ...) do {char tmp_buf[len];\
int size;\
+ memset (tmp_buf, 0, len);\
size = GNUNET_snprintf(tmp_buf,sizeof(tmp_buf),__VA_ARGS__);\
if (0 > size)\
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,\
"Failed to create tmp_buf\n");\
else\
- to_file_(file_name,tmp_buf);\
+ GNUNET_DISK_fn_write(file_name,tmp_buf, len, \
+ GNUNET_DISK_PERM_USER_READ |\
+ GNUNET_DISK_PERM_USER_WRITE |\
+ GNUNET_DISK_PERM_GROUP_READ |\
+ GNUNET_DISK_PERM_OTHER_READ);\
} while (0);
#else /* TO_FILE */
# define to_file(file_name, ...)