Deleted Added
full compact
fsm.c (250303) fsm.c (254657)
1/*-
2 * Copyright (c) 2005-2010 Daniel Braniss <danny@cs.huji.ac.il>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

25 *
26 */
27
28/*
29 | $Id: fsm.c,v 2.8 2007/05/19 16:34:21 danny Exp danny $
30 */
31
32#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2005-2010 Daniel Braniss <danny@cs.huji.ac.il>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

25 *
26 */
27
28/*
29 | $Id: fsm.c,v 2.8 2007/05/19 16:34:21 danny Exp danny $
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sbin/iscontrol/fsm.c 250303 2013-05-06 17:44:12Z eadler $");
33__FBSDID("$FreeBSD: head/sbin/iscontrol/fsm.c 254657 2013-08-22 14:02:34Z trasz $");
34
35#include <sys/param.h>
36#include <sys/types.h>
37#include <sys/socket.h>
38#include <sys/sysctl.h>
39
40#include <netinet/in.h>
41#include <netinet/tcp.h>

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

48#include <string.h>
49#include <errno.h>
50#include <fcntl.h>
51#include <time.h>
52#include <syslog.h>
53#include <stdarg.h>
54#include <camlib.h>
55
34
35#include <sys/param.h>
36#include <sys/types.h>
37#include <sys/socket.h>
38#include <sys/sysctl.h>
39
40#include <netinet/in.h>
41#include <netinet/tcp.h>

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

48#include <string.h>
49#include <errno.h>
50#include <fcntl.h>
51#include <time.h>
52#include <syslog.h>
53#include <stdarg.h>
54#include <camlib.h>
55
56#include <dev/iscsi/initiator/iscsi.h>
56#include <dev/iscsi_initiator/iscsi.h>
57#include "iscontrol.h"
58
59typedef enum {
60 T1 = 1,
61 T2, /*T3,*/ T4, T5, /*T6,*/ T7, T8, T9,
62 T10, T11, T12, T13, T14, T15, T16, T18
63} trans_t;
64

--- 692 unchanged lines hidden ---
57#include "iscontrol.h"
58
59typedef enum {
60 T1 = 1,
61 T2, /*T3,*/ T4, T5, /*T6,*/ T7, T8, T9,
62 T10, T11, T12, T13, T14, T15, T16, T18
63} trans_t;
64

--- 692 unchanged lines hidden ---