host: remove unused host_t.get_differences() method

This commit is contained in:
Martin Willi
2013-05-06 16:10:11 +02:00
parent 7749eb0d2a
commit 4dc83e9fac
2 changed files with 0 additions and 39 deletions
-18
View File
@@ -36,16 +36,6 @@ typedef struct host_t host_t;
#include <utils/chunk.h>
/**
* Differences between two hosts. They differ in
* address, port, or both.
*/
enum host_diff_t {
HOST_DIFF_NONE = 0,
HOST_DIFF_ADDR = 1,
HOST_DIFF_PORT = 2,
};
/**
* Representates a Host
*
@@ -136,14 +126,6 @@ struct host_t {
*/
bool (*equals) (host_t *this, host_t *other);
/**
* Compare two hosts and return the differences.
*
* @param other the other to compare
* @return differences in a combination of host_diff_t's
*/
host_diff_t (*get_differences) (host_t *this, host_t *other);
/**
* Destroy this host object.
*/