It's kind of silly to have an extra file which contains only a singe
preprocessor define. Move that define to crypt.h and kill rc4.h.
#include "sched.h"
#include "client.cmdline.h"
#include "crypt.h"
-#include "rc4.h"
#include "net.h"
#include "fd.h"
#include "string.h"
#include "list.h"
#include "send.h"
#include "vss.h"
-#include "rc4.h"
#include "net.h"
#include "daemon.h"
#include "fd.h"
void get_random_bytes_or_die(unsigned char *buf, int num);
void init_random_seed_or_die(void);
+/** Opaque structure for stream cipher crypto. */
struct stream_cipher;
+/** Number of bytes of the session key. */
+#define SESSION_KEY_LEN 32
+
/**
* Used on the server-side for client-server communication encryption.
*
+++ /dev/null
-/** \file rc4.h common symbols of command.c and client_common.c */
-
-/** Number of bytes of the session key. */
-#define SESSION_KEY_LEN 32
#include "string.h"
#include "list.h"
#include "user_list.h"
-#include "rc4.h"
static struct list_head user_list;