You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
264 B
16 lines
264 B
7 months ago
|
#ifndef MPLS_H_
|
||
|
#define MPLS_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern const char *mpls_ntop(int af, const void *addr, char *buf, size_t buflen);
|
||
|
extern int mpls_pton(int af, const char *src, void *addr, size_t alen);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|