]> git.meshlink.io Git - meshlink/blobdiff - src/sptps_speed.c
Ensure everything compiles with -Wall without giving warnings.
[meshlink] / src / sptps_speed.c
index d662779b76cee304daee6eeab6df59031e7ffb7f..19ac6263ce2b85e1c7c420026ecad8590d91204f 100644 (file)
 
 // Symbols necessary to link with logger.o
 bool send_request(void *c, const char *msg, ...) { return false; }
-struct list_t *connection_list = NULL;
+void *mesh;
 bool send_meta(void *c, const char *msg , int len) { return false; }
 char *logfilename = NULL;
 struct timeval now;
 
-static bool send_data(void *handle, uint8_t type, const char *data, size_t len) {
+static bool send_data(void *handle, uint8_t type, const void *data, size_t len) {
        int fd = *(int *)handle;
        send(fd, data, len, 0);
        return true;
 }
 
-static bool receive_record(void *handle, uint8_t type, const char *data, uint16_t len) {
+static bool receive_record(void *handle, uint8_t type, const void *data, uint16_t len) {
        return true;
 }
 
@@ -82,6 +82,10 @@ int main(int argc, char *argv[]) {
 
        crypto_init();
 
+       randomize(buf1, sizeof buf1);
+       randomize(buf2, sizeof buf2);
+       randomize(buf3, sizeof buf3);
+
        // Key generation
 
        fprintf(stderr, "Generating keys for %lg seconds: ", duration);