public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
257b9c582ef4e3a690248e79a2a8ec4f7e2b24ff blob 1000 bytes (raw)

 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
32
33
34
35
36
37
 
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright Red Hat
 * Author: David Gibson <david@gibson.dropbear.id.au>
 */

#ifndef PARSE_H
#define PARSE_H

#include <stdbool.h>
#include <netinet/in.h>

union inany_addr;

/**
 * port_range() - Represents a non-empty range of ports
 * @first:	First port number in the range
 * @last:	Last port number in the range (inclusive)
 *
 * Invariant:	@last >= @first
 */
struct port_range {
	in_port_t first, last;
};

bool parse_literal(const char **cursor, const char *lit);
bool parse_eoi(const char *cursor);
bool parse_unsigned(const char **cursor, int base, unsigned long *valp);
bool parse_port_range(const char **cursor, struct port_range *range);
bool parse_ipv4(const char **cursor, struct in_addr *abuf);
bool parse_inany_(const char **cursor, union inany_addr *addr,
		  sa_family_t *parse_af);

#define parse_inany(cursor, addr)	parse_inany_((cursor), (addr), NULL)

bool parse_ifspec(const char **cursor, char *ifname);

#endif /* _PARSE_H */
debug log:

solving 257b9c58 ...
found 257b9c58 in https://passt.top/passt

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).