mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-03 10:46:58 +01:00
28 lines
889 B
C
28 lines
889 B
C
|
#include <lightningd/gossip_msg.h>
|
||
|
#include <wire/wire.h>
|
||
|
|
||
|
void fromwire_gossip_getnodes_entry(const u8 **pptr, size_t *max, struct gossip_getnodes_entry *entry)
|
||
|
{
|
||
|
u8 hostnamelen;
|
||
|
fromwire_pubkey(pptr, max, &entry->nodeid);
|
||
|
hostnamelen = fromwire_u8(pptr, max);
|
||
|
entry->hostname = tal_arr(entry, char, hostnamelen);
|
||
|
fromwire_u8_array(pptr, max, (u8*)entry->hostname, hostnamelen);
|
||
|
entry->port = fromwire_u16(pptr, max);
|
||
|
}
|
||
|
void towire_gossip_getnodes_entry(u8 **pptr, const struct gossip_getnodes_entry *entry)
|
||
|
{
|
||
|
u8 hostnamelen;
|
||
|
towire_pubkey(pptr, &entry->nodeid);
|
||
|
if (entry->hostname) {
|
||
|
hostnamelen = strlen(entry->hostname);
|
||
|
towire_u8(pptr, hostnamelen);
|
||
|
towire_u8_array(pptr, (u8*)entry->hostname, hostnamelen);
|
||
|
}else {
|
||
|
/* If we don't have a hostname just write an empty string */
|
||
|
hostnamelen = 0;
|
||
|
towire_u8(pptr, hostnamelen);
|
||
|
}
|
||
|
towire_u16(pptr, entry->port);
|
||
|
}
|