Skip to content

Commit

Permalink
curvetun: renamed client, server, and management files
Browse files Browse the repository at this point in the history
Rename those files so that they are conform to the rest of the files
we have in our repository.

Signed-off-by: Daniel Borkmann <[email protected]>
  • Loading branch information
borkmann committed Jul 11, 2013
1 parent 760f5b4 commit 2b03259
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions curvetun.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
#include "curvetun.h"
#include "curve.h"
#include "config.h"
#include "ct_usermgmt.h"
#include "ct_servmgmt.h"
#include "curvetun_mgmt_users.h"
#include "curvetun_mgmt_servers.h"
#include "ioops.h"
#include "tprintf.h"
#include "crypto.h"
Expand Down
8 changes: 4 additions & 4 deletions curvetun/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ curvetun-objs = xmalloc.o \
ioexact.o \
ioops.o \
cpusched.o \
ct_usermgmt.o \
ct_servmgmt.o \
ct_server.o \
ct_client.o \
curvetun_mgmt_servers.o \
curvetun_mgmt_users.o \
curvetun_server.o \
curvetun_client.o \
curvetun.o
4 changes: 2 additions & 2 deletions ct_client.c → curvetun_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
#include "corking.h"
#include "ioexact.h"
#include "curvetun.h"
#include "ct_servmgmt.h"
#include "ct_usermgmt.h"
#include "curvetun_mgmt_servers.h"
#include "curvetun_mgmt_users.h"
#include "crypto_auth_hmacsha512256.h"

extern volatile sig_atomic_t sigint;
Expand Down
2 changes: 1 addition & 1 deletion ct_servmgmt.c → curvetun_mgmt_servers.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
#include "xmalloc.h"
#include "curvetun.h"
#include "curve.h"
#include "curvetun_mgmt_servers.h"
#include "crypto.h"
#include "ct_servmgmt.h"

struct server_store {
int udp;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion ct_usermgmt.c → curvetun_mgmt_users.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
#include <arpa/inet.h>

#include "die.h"
#include "ct_usermgmt.h"
#include "locking.h"
#include "xmalloc.h"
#include "ioexact.h"
Expand All @@ -24,6 +23,7 @@
#include "curvetun.h"
#include "curve.h"
#include "crypto.h"
#include "curvetun_mgmt_users.h"
#include "hash.h"

struct user_store {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion ct_server.c → curvetun_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#include "cpus.h"
#include "sock.h"
#include "built_in.h"
#include "ct_usermgmt.h"
#include "curvetun_mgmt_users.h"
#include "cpusched.h"
#include "trie.h"

Expand Down

0 comments on commit 2b03259

Please sign in to comment.