/* SPDX-License-Identifier: GPL-2.0 */ /* * IPWireless 3G PCMCIA Network Driver * * Original code * by Stephen Blackheath <stephen@blacksapphire.com>, * Ben Martel <benm@symmetric.co.nz> * * Copyrighted as follows: * Copyright (C) 2004 by Symmetric Systems Ltd (NZ) * * Various driver changes and rewrites, port to new kernels * Copyright (C) 2006-2007 Jiri Kosina * * Misc code cleanups and updates * Copyright (C) 2007 David Sterba
*/
/* Driver type - for use in tl_setup_info_msg.driver_type */ #define COMM_DRIVER 0 #define NDISWAN_DRIVER 1 #define NDISWAN_DRIVER_MAJOR_VERSION 2 #define NDISWAN_DRIVER_MINOR_VERSION 0
/* * It should not matter when this message comes over as we just store the * results and send the ACK.
*/ struct tl_setup_info_msg { unsignedchar sig_no; /* TL_SETUP_SIGNO_INFO_MSG */ unsignedchar driver_type; unsignedchar major_version; unsignedchar minor_version;
} __attribute__ ((__packed__));
/* Define a union of all the msgs that the driver can receive from the card.*/ union ipw_setup_rx_msg { unsignedchar sig_no; struct tl_setup_get_version_rsp version_rsp_msg; struct tl_setup_open_msg open_msg; struct tl_setup_close_msg close_msg; struct tl_setup_info_msg InfoMsg; struct tl_setup_info_msgAck info_msg_ack;
} __attribute__ ((__packed__));
#endif/* _IPWIRELESS_CS_SETUP_PROTOCOL_H_ */
Messung V0.5
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.