@ -565,6 +565,9 @@ bool handle_channel_announcement(
c1 = get_connection_by_scid ( rstate , & short_channel_id , 1 ) ;
c1 = get_connection_by_scid ( rstate , & short_channel_id , 1 ) ;
forward = ! c0 | | ! c1 | | ! c0 - > channel_announcement | | ! c1 - > channel_announcement ;
forward = ! c0 | | ! c1 | | ! c0 - > channel_announcement | | ! c1 - > channel_announcement ;
/* FIXME: What should we do if this channel_announce is completely
* different from previous ? eg . different nodes ? We would have to
* clear out the old announce and all updates . . . */
add_channel_direction ( rstate , & node_id_1 , & node_id_2 , & short_channel_id ,
add_channel_direction ( rstate , & node_id_1 , & node_id_2 , & short_channel_id ,
sigfail ? NULL : serialized ) ;
sigfail ? NULL : serialized ) ;
add_channel_direction ( rstate , & node_id_2 , & node_id_1 , & short_channel_id ,
add_channel_direction ( rstate , & node_id_2 , & node_id_1 , & short_channel_id ,
@ -581,7 +584,7 @@ bool handle_channel_announcement(
u8 * tag = tal_arr ( tmpctx , u8 , 0 ) ;
u8 * tag = tal_arr ( tmpctx , u8 , 0 ) ;
towire_short_channel_id ( & tag , & short_channel_id ) ;
towire_short_channel_id ( & tag , & short_channel_id ) ;
queue_broadcast ( rstate - > broadcasts , WIRE_CHANNEL_ANNOUNCEMENT ,
queue_broadcast ( rstate - > broadcasts , WIRE_CHANNEL_ANNOUNCEMENT ,
tag , serialized ) ;
tag , serialized , true ) ;
tal_free ( tmpctx ) ;
tal_free ( tmpctx ) ;
return local ;
return local ;
@ -677,7 +680,7 @@ void handle_channel_update(struct routing_state *rstate, const u8 *update)
queue_broadcast ( rstate - > broadcasts ,
queue_broadcast ( rstate - > broadcasts ,
WIRE_CHANNEL_UPDATE ,
WIRE_CHANNEL_UPDATE ,
tag ,
tag ,
serialized ) ;
serialized , false ) ;
tal_free ( c - > channel_update ) ;
tal_free ( c - > channel_update ) ;
c - > channel_update = tal_steal ( c , serialized ) ;
c - > channel_update = tal_steal ( c , serialized ) ;
@ -783,7 +786,8 @@ void handle_node_announcement(
queue_broadcast ( rstate - > broadcasts ,
queue_broadcast ( rstate - > broadcasts ,
WIRE_NODE_ANNOUNCEMENT ,
WIRE_NODE_ANNOUNCEMENT ,
tag ,
tag ,
serialized ) ;
serialized ,
false ) ;
tal_free ( node - > node_announcement ) ;
tal_free ( node - > node_announcement ) ;
node - > node_announcement = tal_steal ( node , serialized ) ;
node - > node_announcement = tal_steal ( node , serialized ) ;
tal_free ( tmpctx ) ;
tal_free ( tmpctx ) ;