Blame iscsiuio/src/apps/brcm-iscsi/brcm_iscsi.c

Packit eace71
/*
Packit eace71
 * Copyright (c) 2009-2011, Broadcom Corporation
Packit eace71
 * Copyright (c) 2014, QLogic Corporation
Packit eace71
 *
Packit eace71
 * Written by:  Benjamin Li <benli@broadcom.com>
Packit eace71
 *              Based on code example from Adam Dunkels
Packit eace71
 *
Packit eace71
 * All rights reserved.
Packit eace71
 *
Packit eace71
 * Redistribution and use in source and binary forms, with or without
Packit eace71
 * modification, are permitted provided that the following conditions
Packit eace71
 * are met:
Packit eace71
 * 1. Redistributions of source code must retain the above copyright
Packit eace71
 *    notice, this list of conditions and the following disclaimer.
Packit eace71
 * 2. Redistributions in binary form must reproduce the above copyright
Packit eace71
 *    notice, this list of conditions and the following disclaimer in the
Packit eace71
 *    documentation and/or other materials provided with the distribution.
Packit eace71
 * 3. All advertising materials mentioning features or use of this software
Packit eace71
 *    must display the following acknowledgement:
Packit eace71
 *      This product includes software developed by Adam Dunkels.
Packit eace71
 * 4. The name of the author may not be used to endorse or promote
Packit eace71
 *    products derived from this software without specific prior
Packit eace71
 *    written permission.
Packit eace71
 *
Packit eace71
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
Packit eace71
 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
Packit eace71
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit eace71
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
Packit eace71
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit eace71
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
Packit eace71
 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
Packit eace71
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
Packit eace71
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
Packit eace71
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
Packit eace71
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit eace71
 *
Packit eace71
 */
Packit eace71
/**
Packit eace71
 * \addtogroup brcm-iscsi
Packit eace71
 * @{
Packit eace71
 */
Packit eace71
Packit eace71
/**
Packit eace71
 * \file
Packit eace71
 *         An example of how to write uIP applications
Packit eace71
 *         with protosockets
Packit eace71
 * \author
Packit eace71
 *         Benjamin Li <benli@broadcom.com>
Packit eace71
 */
Packit eace71
Packit eace71
/*
Packit eace71
 * This is a short example of how to write uIP applications using
Packit eace71
 * protosockets.
Packit eace71
 */
Packit eace71
Packit eace71
/*
Packit eace71
 * We define the application state (struct hello_world_state) in the
Packit eace71
 * hello-world.h file, so we need to include it here. We also include
Packit eace71
 * uip.h (since this cannot be included in hello-world.h) and
Packit eace71
 * <string.h>, since we use the memcpy() function in the code.
Packit eace71
 */
Packit eace71
#include "brcm_iscsi.h"
Packit eace71
#include "uip.h"
Packit eace71
#include <string.h>
Packit eace71
#include <stdio.h>
Packit eace71
Packit eace71
#include "uip_arp.h"
Packit eace71
Packit eace71
/*---------------------------------------------------------------------------*/
Packit eace71
/*
Packit eace71
 * The initialization function. We must explicitly call this function
Packit eace71
 * from the system initialization code, some time after uip_init() is
Packit eace71
 * called.
Packit eace71
 */
Packit eace71
void brcm_iscsi_init(void)
Packit eace71
{
Packit eace71
}
Packit eace71
Packit eace71
/*---------------------------------------------------------------------------*/
Packit eace71
/*
Packit eace71
 * In hello-world.h we have defined the UIP_APPCALL macro to
Packit eace71
 * hello_world_appcall so that this funcion is uIP's application
Packit eace71
 * function. This function is called whenever an uIP event occurs
Packit eace71
 * (e.g. when a new connection is established, new data arrives, sent
Packit eace71
 * data is acknowledged, data needs to be retransmitted, etc.).
Packit eace71
 */
Packit eace71
void brcm_iscsi_appcall(struct uip_stack *ustack)
Packit eace71
{
Packit eace71
}