Skip to content

Commit

Permalink
Move slp aka msnp2p stuff to 'cvr' subdir.
Browse files Browse the repository at this point in the history
Don't ask me why, but it seems cvr is the right name.
  • Loading branch information
felipec committed Jan 27, 2008
1 parent 301e675 commit 9fd00e0
Show file tree
Hide file tree
Showing 18 changed files with 29 additions and 25 deletions.
10 changes: 5 additions & 5 deletions Makefile
Expand Up @@ -16,11 +16,6 @@ objects = \
object.o \
page.o \
session.o \
slp.o \
slpcall.o \
slplink.o \
slpmsg.o \
slpsession.o \
state.o \
switchboard.o \
sync.o \
Expand All @@ -39,6 +34,11 @@ objects = \
io/conn.o \
io/cmd_conn.o \
io/http_conn.o \
cvr/slp.o \
cvr/slpcall.o \
cvr/slplink.o \
cvr/slpmsg.o \
cvr/slpsession.o \
fix-purple.o

sources = $(patsubst %.o,%.c,$(objects))
Expand Down
2 changes: 1 addition & 1 deletion ab/user.c
Expand Up @@ -24,7 +24,7 @@
#include "user_private.h"
#include "userlist_private.h"

#include "slp.h"
#include "cvr/slp.h"
#include "fix-purple.h"

#include <string.h>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 3 additions & 2 deletions slplink.h → cvr/slplink.h
Expand Up @@ -34,10 +34,11 @@ struct MsnSlpSession;

struct _PurpleXfer;

#include <slpcall.h>
#include <object.h>
#include <glib.h>

#include "slpcall.h"
#include "object.h"

typedef void (*MsnSlpCb) (MsnSlpCall *slpcall, const guchar *data, gsize size);
typedef void (*MsnSlpEndCb) (MsnSlpCall *slpcall, struct MsnSession *session);

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions directconn.c
Expand Up @@ -25,8 +25,8 @@
#include "msn_log.h"

#include "session.h"
#include "slp.h"
#include "slpmsg.h"
#include "cvr/slp.h"
#include "cvr/slpmsg.h"

#include "io/conn.h"

Expand Down
4 changes: 2 additions & 2 deletions directconn.h
Expand Up @@ -25,8 +25,8 @@

typedef struct MsnDirectConn MsnDirectConn;

#include "slplink.h"
#include "slp.h"
#include "cvr/slplink.h"
#include "cvr/slp.h"

#include "cmd/msg.h"

Expand Down
19 changes: 10 additions & 9 deletions msn.c
Expand Up @@ -25,34 +25,35 @@
#include <glib.h>

#include "msn.h"
#include "accountopt.h"
#include "page.h"
#include "pluginpref.h"
#include "prefs.h"
#include "session.h"
#include "state.h"
#include "util.h"
#include "cmds.h"
#include "core.h"
#include "prpl.h"
#include "msn_util.h"
#include "version.h"

#include "switchboard.h"
#include "notification.h"
#include "sync.h"
#include "slplink.h"

#include "session_private.h"

#include "cmd/msg.h"

#include "ab/user_private.h"

#include "cvr/slplink.h"

/* libpurple stuff. */
#include <debug.h>
#include <privacy.h>
#include <request.h>
#include <accountopt.h>
#include <pluginpref.h>
#include <cmds.h>
#include <version.h>
#include <core.h>
#include <prpl.h>
#include <util.h>
#include <prefs.h>
#include "internal.h"

#if PHOTO_SUPPORT
Expand Down
5 changes: 3 additions & 2 deletions notification.c
Expand Up @@ -25,6 +25,7 @@
#include "sync.h"
#include "nexus.h"

#include "session.h"
#include "session_private.h"

#include "cmd/cmdproc_private.h"
Expand All @@ -41,10 +42,10 @@
#include "io/conn_private.h"
#include "io/cmd_conn_private.h"

#include "session.h"
#include "cvr/slplink.h" /* for slplink_destroy */

#include "error.h" /* for error_get_text */
#include "msn_util.h" /* for parse_socket */
#include "slplink.h" /* for slplink_destroy */

#include "msn_intl.h"

Expand Down
3 changes: 2 additions & 1 deletion session.c
Expand Up @@ -25,7 +25,8 @@
#include "notification.h"
#include "fix-purple.h"

#include "slplink.h"
#include "cvr/slplink.h"

#include "sync.h"
#include "nexus.h"

Expand Down
2 changes: 1 addition & 1 deletion switchboard.c
Expand Up @@ -24,7 +24,7 @@
#include "session.h"
#include "switchboard.h"
#include "notification.h"
#include "slplink.h"
#include "cvr/slplink.h"

#include "session_private.h"

Expand Down

0 comments on commit 9fd00e0

Please sign in to comment.