diff options
author | Oleg Zhurakivskyy <oleg.zhurakivskyy@intel.com> | 2014-09-15 14:23:25 +0300 |
---|---|---|
committer | Frederic PAUT <fpaut@fpaut-MOBL2> | 2014-11-03 11:52:12 +0100 |
commit | a5709864b534732d22ad2cf443623140fe95fbfe (patch) | |
tree | edf0cfa20d2f3fa7d282541cf753c6076af9e864 /lib | |
parent | 29a6a049d268442e17b785d57a53694ee8faf5f3 (diff) | |
download | neardal-a5709864b534732d22ad2cf443623140fe95fbfe.tar.gz neardal-a5709864b534732d22ad2cf443623140fe95fbfe.tar.bz2 neardal-a5709864b534732d22ad2cf443623140fe95fbfe.zip |
Minor cleanup.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/neardal.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/lib/neardal.h b/lib/neardal.h index 5894ca3..955e319 100644 --- a/lib/neardal.h +++ b/lib/neardal.h @@ -2,7 +2,7 @@ * NEARDAL (Neard Abstraction Library) * * Copyright 2014 Marvell International Ltd. - * Copyright 2012 Intel Corporation. All rights reserved. + * Copyright 2012-2014 Intel Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 2 @@ -122,12 +122,17 @@ typedef struct { HandoverCarrier, HandoverRequest, HandoverSelect. */ + /* WiFi handover parameters. */ + char *ssid; /**< WiFi SSID. */ + char *passphrase; /**< WiFi Passphrase. */ + char *encryption; /**< WiFi Encryption. */ + char *authentication; /**< WiFi Authentication. */ + char *uri; /**< URI including scheme and resource. */ + + /* Keep uriObjSize first after contiguous array of pointers. */ + unsigned int uriObjSize;/**< URI object size. */ - char *ssid; /**< The Handover SSID for WiFi */ - char *passphrase; /**< The Handover Passphrase for WiFi */ - char *encryption; /**< The Handover Encryption for WiFi */ - char *authentication; /**< The Handover Authentication for WiFi */ } neardal_record; /* @}*/ |