Browse Source

update for redis plugin

pull/81/head
Richard Fuchs 11 years ago
parent
commit
98e0b6dea5
3 changed files with 3 additions and 3 deletions
  1. +1
    -2
      daemon/call.c
  2. +1
    -0
      daemon/call.h
  3. +1
    -1
      daemon/main.c

+ 1
- 2
daemon/call.c View File

@ -326,7 +326,6 @@ static void __stream_unconfirm(struct packet_stream *ps);
static void stream_unconfirm(struct packet_stream *ps); static void stream_unconfirm(struct packet_stream *ps);
static void __monologue_destroy(struct call_monologue *monologue); static void __monologue_destroy(struct call_monologue *monologue);
static struct interface_address *get_interface_address(struct local_interface *lif, int family); static struct interface_address *get_interface_address(struct local_interface *lif, int family);
static struct interface_address *get_any_interface_address(struct local_interface *lif, int family);
@ -3549,7 +3548,7 @@ static struct interface_address *get_interface_address(struct local_interface *l
} }
/* safety fallback */ /* safety fallback */
static struct interface_address *get_any_interface_address(struct local_interface *lif, int family) {
struct interface_address *get_any_interface_address(struct local_interface *lif, int family) {
struct interface_address *ifa; struct interface_address *ifa;
ifa = get_interface_address(lif, family); ifa = get_interface_address(lif, family);


+ 1
- 0
daemon/call.h View File

@ -506,6 +506,7 @@ INLINE struct interface_address *get_interface_from_address(struct local_interfa
{ {
return g_hash_table_lookup(lif->addr_hash, addr); return g_hash_table_lookup(lif->addr_hash, addr);
} }
struct interface_address *get_any_interface_address(struct local_interface *lif, int family);
const struct transport_protocol *transport_protocol(const str *s); const struct transport_protocol *transport_protocol(const str *s);


+ 1
- 1
daemon/main.c View File

@ -31,7 +31,7 @@
#define REDIS_MODULE_VERSION "redis/7"
#define REDIS_MODULE_VERSION "redis/8"


Loading…
Cancel
Save