Deleted Added
full compact
ctld.h (265509) ctld.h (265511)
1/*-
2 * Copyright (c) 2012 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Edward Tomasz Napierala under sponsorship
6 * from the FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 12 unchanged lines hidden (view full) ---

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
1/*-
2 * Copyright (c) 2012 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Edward Tomasz Napierala under sponsorship
6 * from the FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 12 unchanged lines hidden (view full) ---

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD: stable/10/usr.sbin/ctld/ctld.h 265509 2014-05-07 07:32:45Z trasz $
29 * $FreeBSD: stable/10/usr.sbin/ctld/ctld.h 265511 2014-05-07 07:35:21Z trasz $
30 */
31
32#ifndef CTLD_H
33#define CTLD_H
34
35#include <sys/queue.h>
36#include <stdbool.h>
37#include <libutil.h>

--- 113 unchanged lines hidden (view full) ---

151 uint16_t conf_last_portal_group_tag;
152#ifdef ICL_KERNEL_PROXY
153 int conf_portal_id;
154#endif
155 struct pidfh *conf_pidfh;
156
157 bool conf_default_pg_defined;
158 bool conf_default_ag_defined;
30 */
31
32#ifndef CTLD_H
33#define CTLD_H
34
35#include <sys/queue.h>
36#include <stdbool.h>
37#include <libutil.h>

--- 113 unchanged lines hidden (view full) ---

151 uint16_t conf_last_portal_group_tag;
152#ifdef ICL_KERNEL_PROXY
153 int conf_portal_id;
154#endif
155 struct pidfh *conf_pidfh;
156
157 bool conf_default_pg_defined;
158 bool conf_default_ag_defined;
159 bool conf_kernel_port_on;
159};
160
161#define CONN_SESSION_TYPE_NONE 0
162#define CONN_SESSION_TYPE_DISCOVERY 1
163#define CONN_SESSION_TYPE_NORMAL 2
164
165#define CONN_DIGEST_NONE 0
166#define CONN_DIGEST_CRC32C 1

--- 150 unchanged lines hidden ---
160};
161
162#define CONN_SESSION_TYPE_NONE 0
163#define CONN_SESSION_TYPE_DISCOVERY 1
164#define CONN_SESSION_TYPE_NORMAL 2
165
166#define CONN_DIGEST_NONE 0
167#define CONN_DIGEST_CRC32C 1

--- 150 unchanged lines hidden ---