File: ip_port_range.c

package info (click to toggle)
libreswan 5.2-2.4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 81,656 kB
  • sloc: ansic: 129,988; sh: 32,018; xml: 20,646; python: 10,303; makefile: 3,022; javascript: 1,506; sed: 574; yacc: 511; perl: 264; awk: 52
file content (54 lines) | stat: -rw-r--r-- 1,402 bytes parent folder | download | duplicates (3)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* ip port range, for libreswan
 *
 * Copyright (C) 2020 Andrew Cagney
 *
 * This library is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Library General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.  See <https://www.gnu.org/licenses/lgpl-2.1.txt>.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
 * License for more details.
 */

#include <arpa/inet.h>		/* for ntohs() */

#include "jambuf.h"
#include "ip_port_range.h"
#include "lswlog.h"		/* for pexpect() */

const ip_port_range unset_port_range;

ip_port_range port_range_from_ports(ip_port lo, ip_port hi)
{
	ip_port_range r = {
		.is_set = true,
		.lo = lo.hport,
		.hi = hi.hport,
	};
	pexpect(r.lo <= r.hi);
	return r;
}

size_t jam_port_range(struct jambuf *buf, ip_port_range r)
{
	if (!r.is_set) {
		return jam(buf, "<unset-port-range>");
	}

	if (r.lo == r.hi) {
		return jam(buf, "%u", r.lo);
	} else {
		return jam(buf, "%u-%u", r.lo, r.hi);
	}

}

const char *str_port_range(ip_port_range port, port_range_buf *buf)
{
	struct jambuf jambuf = ARRAY_AS_JAMBUF(buf->buf);
	jam_port_range(&jambuf, port);
	return buf->buf;
}