diff options
author | Mark Rustad <mark.d.rustad@intel.com> | 2011-02-02 17:54:47 -0800 |
---|---|---|
committer | Mike Christie <michaelc@cs.wisc.edu> | 2011-02-15 19:06:47 -0600 |
commit | 702c60cc964209df5ad004615aaf40662650b0b6 (patch) | |
tree | 15b76b93ff437575f1fcc1f6d58ccc26a9c8f515 /usr/dcb_app.h | |
parent | b38dc20a32b7f3e0e46be6695a4a10475abfb21f (diff) | |
download | open-iscsi-702c60cc964209df5ad004615aaf40662650b0b6.tar.gz |
Add dcb_app.h for DCB support
Add header file with prototypes for functions in dcb_app.c.
Signed-off-by: Mark Rustad <mark.d.rustad@intel.com>
Diffstat (limited to 'usr/dcb_app.h')
-rw-r--r-- | usr/dcb_app.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/usr/dcb_app.h b/usr/dcb_app.h new file mode 100644 index 0000000..2e756f1 --- /dev/null +++ b/usr/dcb_app.h @@ -0,0 +1,34 @@ +/******************************************************************************* + + DCB application support + Copyright(c) 2007-2010 Intel Corporation. + + This program is free software; you can redistribute it and/or modify it + under the terms and conditions of the GNU General Public License, + version 2, as published by the Free Software Foundation. + + This program is distributed in the hope it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along with + this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. + + The full GNU General Public License is included in this distribution in + the file called "COPYING". + + Contact Information: + e1000-eedc Mailing List <e1000-eedc@lists.sourceforge.net> + Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 + +*******************************************************************************/ + +#ifndef _DCB_APP_H_ +#define _DCB_APP_H_ + +int get_dcb_app_pri_by_port(const char *iface, int port); +int get_dcb_app_pri_by_ethtype(const char *iface, int ethtype); + +#endif /* _DCB_APP_H_ */ |