mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
RPKI: fixed some of the extended warnings
This commit is contained in:
parent
ad88b94bca
commit
b94e5e58db
@ -79,7 +79,7 @@ static const char *str_pdu_type_[] = {
|
|||||||
[ERROR] = "Error"
|
[ERROR] = "Error"
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char * const str_pdu_type(uint type) {
|
static const char *str_pdu_type(uint type) {
|
||||||
if (type < PDU_TYPE_MAX)
|
if (type < PDU_TYPE_MAX)
|
||||||
return str_pdu_type_[type];
|
return str_pdu_type_[type];
|
||||||
else
|
else
|
||||||
@ -886,7 +886,7 @@ rpki_rx_packet(struct rpki_cache *cache, struct pdu_header *pdu)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
rpki_rx_hook(struct birdsock *sk, int size)
|
rpki_rx_hook(struct birdsock *sk, uint size)
|
||||||
{
|
{
|
||||||
struct rpki_cache *cache = sk->data;
|
struct rpki_cache *cache = sk->data;
|
||||||
struct rpki_proto *p = cache->p;
|
struct rpki_proto *p = cache->p;
|
||||||
@ -894,7 +894,7 @@ rpki_rx_hook(struct birdsock *sk, int size)
|
|||||||
byte *pkt_start = sk->rbuf;
|
byte *pkt_start = sk->rbuf;
|
||||||
byte *end = pkt_start + size;
|
byte *end = pkt_start + size;
|
||||||
|
|
||||||
DBG("rx hook got %d bytes \n", size);
|
DBG("rx hook got %u bytes \n", size);
|
||||||
|
|
||||||
while (end >= pkt_start + RPKI_PDU_HEADER_LEN)
|
while (end >= pkt_start + RPKI_PDU_HEADER_LEN)
|
||||||
{
|
{
|
||||||
|
@ -38,7 +38,7 @@ enum rpki_rtvals {
|
|||||||
|
|
||||||
int rpki_send_serial_query(struct rpki_cache *cache);
|
int rpki_send_serial_query(struct rpki_cache *cache);
|
||||||
int rpki_send_reset_query(struct rpki_cache *cache);
|
int rpki_send_reset_query(struct rpki_cache *cache);
|
||||||
int rpki_rx_hook(sock *sk, int size);
|
int rpki_rx_hook(sock *sk, uint size);
|
||||||
void rpki_connected_hook(sock *sk);
|
void rpki_connected_hook(sock *sk);
|
||||||
void rpki_err_hook(sock *sk, int size);
|
void rpki_err_hook(sock *sk, int size);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user