liyujie
2025-08-28 786ff4f4ca2374bdd9177f2e24b503d43e7a3b93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * netlink-private/socket.h        Private declarations for socket
 *
 *    This library is free software; you can redistribute it and/or
 *    modify it under the terms of the GNU Lesser General Public
 *    License as published by the Free Software Foundation version 2.1
 *    of the License.
 *
 * Copyright (c) 2014 Thomas Graf <tgraf@suug.ch>
 */
 
#ifndef NETLINK_SOCKET_PRIV_H_
#define NETLINK_SOCKET_PRIV_H_
 
#include <netlink-private/netlink.h>
 
#ifdef __cplusplus
extern "C" {
#endif
 
int _nl_socket_is_local_port_unspecified (struct nl_sock *sk);
uint32_t _nl_socket_generate_local_port_no_release(struct nl_sock *sk);
 
void _nl_socket_used_ports_release_all(const uint32_t *used_ports);
void _nl_socket_used_ports_set(uint32_t *used_ports, uint32_t port);
 
#ifdef __cplusplus
}
#endif
 
#endif