Blame
Date:
Wed Feb 16 18:28:23 2022 UTC
Message:
initial commit
01
2022-02-16
op
/* $OpenBSD: control.h,v 1.3 2021/01/19 16:54:00 florian Exp $ */
02
2022-02-16
op
03
2022-02-16
op
/*
04
2022-02-16
op
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
05
2022-02-16
op
*
06
2022-02-16
op
* Permission to use, copy, modify, and distribute this software for any
07
2022-02-16
op
* purpose with or without fee is hereby granted, provided that the above
08
2022-02-16
op
* copyright notice and this permission notice appear in all copies.
09
2022-02-16
op
*
10
2022-02-16
op
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11
2022-02-16
op
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12
2022-02-16
op
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13
2022-02-16
op
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14
2022-02-16
op
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15
2022-02-16
op
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16
2022-02-16
op
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17
2022-02-16
op
*/
18
2022-02-16
op
19
2022-02-16
op
int control_init(char *);
20
2022-02-16
op
int control_listen(int fd);
21
2022-02-16
op
void control_accept(int, short, void *);
22
2022-02-16
op
void control_dispatch_imsg(int, short, void *);
23
2022-02-16
op
int control_imsg_relay(struct imsg *);
Omar Polo