David Fletcher / Mbed 2 deprecated cc3100_Test_Demo

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Netapp

Netapp

Functions

int16_t sl_NetAppStart (const uint32_t AppBitMap)
 Starts a network application.
int16_t sl_NetAppStop (const uint32_t AppBitMap)
 Stops a network application.
int16_t sl_NetAppDnsGetHostByName (unsigned char *hostname, const uint16_t usNameLen, uint32_t *out_ip_addr, const uint8_t family)
 Get host IP by name.
int32_t sl_NetAppDnsGetHostByService (unsigned char *pServiceName, const uint8_t ServiceLen, const uint8_t Family, uint32_t pAddr[], uint32_t *pPort, uint16_t *pTextLen, unsigned char *pText)
 Return service attributes like IP address, port and text according to service name.
int16_t sl_NetAppGetServiceList (const uint8_t IndexOffest, const uint8_t MaxServiceCount, const uint8_t Flags, int8_t *pBuffer, const uint32_t RxBufferLength)
 Get service List Insert into out pBuffer a list of peer's services that are the NWP. The list is in a form of service struct. The user should chose the type of the service struct like:

  • Full service parameters with text.
  • Full service parameters.
  • Short service parameters (port and IP only) especially for tiny hosts.

int16_t sl_NetAppMDNSUnRegisterService (const char *pServiceName, const uint8_t ServiceNameLen)
 Unregister mDNS service This function deletes the mDNS service from the mDNS package and the database.
int16_t sl_NetAppMDNSRegisterService (const char *pServiceName, const uint8_t ServiceNameLen, const char *pText, const uint8_t TextLen, const uint16_t Port, const uint32_t TTL, uint32_t Options)
 Register a new mDNS service.
int16_t sl_NetAppPingStart (const SlPingStartCommand_t *pPingParams, const uint8_t family, SlPingReport_t *pReport, const P_SL_DEV_PING_CALLBACK pPingCallback)
 send ICMP ECHO_REQUEST to network hosts
int32_t sl_NetAppSet (const uint8_t AppId, const uint8_t Option, const uint8_t OptionLen, const uint8_t *pOptionValue)
 Internal function for setting network application configurations.
int32_t sl_NetAppGet (const uint8_t AppId, const uint8_t Option, uint8_t *pOptionLen, uint8_t *pOptionValue)
 Internal function for getting network applications configurations.

Function Documentation

int16_t sl_NetAppDnsGetHostByName ( unsigned char *  hostname,
const uint16_t  usNameLen,
uint32_t *  out_ip_addr,
const uint8_t  family 
) [inherited]

Get host IP by name.

Obtain the IP Address of machine on network, by machine name.

Parameters:
[in]hostnamehost name
[in]usNameLenname length
[out]out_ip_addrThis parameter is filled in with host IP address. In case that host name is not resolved, out_ip_addr is zero.
[in]familyprotocol family
Returns:
On success, 0 is returned. On error, negative is returned SL_POOL_IS_EMPTY may be return in case there are no resources in the system In this case try again later or increase MAX_CONCURRENT_ACTIONS Possible DNS error codes:
  • SL_NET_APP_DNS_QUERY_NO_RESPONSE
  • SL_NET_APP_DNS_NO_SERVER
  • SL_NET_APP_DNS_QUERY_FAILED
  • SL_NET_APP_DNS_MALFORMED_PACKET
  • SL_NET_APP_DNS_MISMATCHED_RESPONSE
See also:
Note:
Only one sl_NetAppDnsGetHostByName can be handled at a time. Calling this API while the same command is called from another thread, may result in one of the two scenarios: 1. The command will wait (internal) until the previous command finish, and then be executed. 2. There are not enough resources and POOL_IS_EMPTY error will return. In this case, MAX_CONCURRENT_ACTIONS can be increased (result in memory increase) or try again later to issue the command.
Warning:
In case an IP address in a string format is set as input, without any prefix (e.g. "1.2.3.4") the device will not try to access the DNS and it will return the input address on the 'out_ip_addr' field
Example:
        uint32_t DestinationIP;
        sl_NetAppDnsGetHostByName("www.google.com", strlen("www.google.com"), &DestinationIP,SL_AF_INET);

        Addr.sin_family = SL_AF_INET;
        Addr.sin_port = sl_Htons(80);
        Addr.sin_addr.s_addr = sl_Htonl(DestinationIP);
        AddrSize = sizeof(SlSockAddrIn_t);
        SockID = sl_Socket(SL_AF_INET,SL_SOCK_STREAM, 0);

Definition at line 660 of file cc3100_netapp.cpp.

int32_t sl_NetAppDnsGetHostByService ( unsigned char *  pServiceName,
const uint8_t  ServiceLen,
const uint8_t  Family,
uint32_t  pAddr[],
uint32_t *  pPort,
uint16_t *  pTextLen,
unsigned char *  pText 
) [inherited]

Return service attributes like IP address, port and text according to service name.

The user sets a service name Full/Part (see example below), and should get:
  • IP of service
  • The port of service
  • The text of service

Hence it can make a connection to the specific service and use it. It is similar to get host by name method. It is done by a single shot query with PTR type on the service name. The command that is sent is from constant parameters and variables parameters.

Parameters:
[in]pServiceService name can be full or partial.
Example for full service name: 1. PC1._ipp._tcp.local 2. PC2_server._ftp._tcp.local
Example for partial service name: 1. _ipp._tcp.local 2. _ftp._tcp.local
[in]ServiceLenThe length of the service name (in_pService).
[in]FamilyIPv4 or IPv6 (SL_AF_INET , SL_AF_INET6).
[out]pAddrContains the IP address of the service.
[out]pPortContains the port of the service.
[out]pTextLenHas 2 options. One as Input field and the other one as output:

  • Input:
    Contains the max length of the text that the user wants to get.
    It means that if the text len of service is bigger that its value than the text is cut to inout_TextLen value.
  • Output:
    Contain the length of the text that is returned. Can be full text or part of the text (see above).
[out]pOut_pTextContains the text of the service full or partial
Returns:
On success, zero is returned SL_POOL_IS_EMPTY may be return in case there are no resources in the system In this case try again later or increase MAX_CONCURRENT_ACTIONS In case No service is found error SL_NET_APP_DNS_NO_ANSWER will be returned
Note:
The returns attributes belongs to the first service found. There may be other services with the same service name that will response to the query. The results of these responses are saved in the peer cache of the Device and should be read by another API.

Only one sl_NetAppDnsGetHostByService can be handled at a time. Calling this API while the same command is called from another thread, may result in one of the two scenarios: 1. The command will wait (internal) until the previous command finish, and then be executed. 2. There are not enough resources and SL_POOL_IS_EMPTY error will return. In this case, MAX_CONCURRENT_ACTIONS can be increased (result in memory increase) or try again later to issue the command.

Warning:
Text length can be 120 bytes only

Definition at line 545 of file cc3100_netapp.cpp.

int32_t sl_NetAppGet ( const uint8_t  AppId,
const uint8_t  Option,
uint8_t *  pOptionLen,
uint8_t *  pOptionValue 
) [inherited]

Internal function for getting network applications configurations.

Returns:
On success, zero is returned. On error, -1 is returned
Parameters:
[in]AppIdApplication id, could be one of the following:

  • SL_NET_APP_HTTP_SERVER_ID
  • SL_NET_APP_DHCP_SERVER_ID
  • SL_NET_APP_MDNS_ID
  • SL_NET_APP_DEVICE_CONFIG_ID
[in]SetOptionsset option, could be one of the following:

  • SL_NET_APP_DHCP_SERVER_ID
  • NETAPP_SET_DHCP_SRV_BASIC_OPT
  • SL_NET_APP_HTTP_SERVER_ID
  • NETAPP_SET_GET_HTTP_OPT_PORT_NUMBER
  • NETAPP_SET_GET_HTTP_OPT_AUTH_CHECK
  • NETAPP_SET_GET_HTTP_OPT_AUTH_NAME
  • NETAPP_SET_GET_HTTP_OPT_AUTH_PASSWORD
  • NETAPP_SET_GET_HTTP_OPT_AUTH_REALM
  • NETAPP_SET_GET_HTTP_OPT_ROM_PAGES_ACCESS
  • SL_NET_APP_MDNS_ID
  • NETAPP_SET_GET_MDNS_CONT_QUERY_OPT
  • NETAPP_SET_GET_MDNS_QEVETN_MASK_OPT
  • NETAPP_SET_GET_MDNS_TIMING_PARAMS_OPT
  • SL_NET_APP_DEVICE_CONFIG_ID
  • NETAPP_SET_GET_DEV_CONF_OPT_DEVICE_URN
  • NETAPP_SET_GET_DEV_CONF_OPT_DOMAIN_NAME
[in]OptionLenThe length of the allocated memory as input, when the function complete, the value of this parameter would be the len that actually read from the device. If the device return length that is longer from the input value, the function will cut the end of the returned structure and will return ESMALLBUF
[out]pValuespointer to the option structure which will be filled with the response from the device
See also:
Note:
Warning:
             Get DHCP Server parameters example:

             SlNetAppDhcpServerBasicOpt_t dhcpParams;
             uint8_t outLen = sizeof(SlNetAppDhcpServerBasicOpt_t);
             sl_NetAppGet(SL_NET_APP_DHCP_SERVER_ID, NETAPP_SET_DHCP_SRV_BASIC_OPT, &outLen, (uint8_t* )&dhcpParams);

             printf("DHCP Start IP %d.%d.%d.%d End IP %d.%d.%d.%d Lease time seconds %d\n",
                SL_IPV4_BYTE(dhcpParams.ipv4_addr_start,3),SL_IPV4_BYTE(dhcpParams.ipv4_addr_start,2),
                SL_IPV4_BYTE(dhcpParams.ipv4_addr_start,1),SL_IPV4_BYTE(dhcpParams.ipv4_addr_start,0),
                SL_IPV4_BYTE(dhcpParams.ipv4_addr_last,3),SL_IPV4_BYTE(dhcpParams.ipv4_addr_last,2),
                SL_IPV4_BYTE(dhcpParams.ipv4_addr_last,1),SL_IPV4_BYTE(dhcpParams.ipv4_addr_last,0),
                dhcpParams.lease_time);
             Get Device URN name example:
             Maximum length of 33 characters of device name.
             Device name affects URN name, own SSID name in AP mode, and WPS file "device name" in WPS I.E (STA-WPS / P2P)
             in case no device URN name set, the default name is "mysimplelink"

             uint8_t my_device_name[35];
             sl_NetAppGet (SL_NET_APP_DEVICE_CONFIG_ID, NETAPP_SET_GET_DEV_CONF_OPT_DEVICE_URN, strlen(my_device_name), (uint8_t *)my_device_name);

Definition at line 889 of file cc3100_netapp.cpp.

int16_t sl_NetAppGetServiceList ( const uint8_t  IndexOffest,
const uint8_t  MaxServiceCount,
const uint8_t  Flags,
int8_t *  pBuffer,
const uint32_t  RxBufferLength 
) [inherited]

Get service List Insert into out pBuffer a list of peer's services that are the NWP. The list is in a form of service struct. The user should chose the type of the service struct like:

  • Full service parameters with text.
  • Full service parameters.
  • Short service parameters (port and IP only) especially for tiny hosts.

The different types of struct are made to give the Possibility to save memory in the host

The user also chose how many max services to get and start point index NWP peer cache. For example: 1. Get max of 3 full services from index 0.Up to 3 full services from index 0 are inserted into pBuffer (services that are in indexes 0,1,2). 2. Get max of 4 full services from index 3.Up to 4 full services from index 3 are inserted into pBuffer (services that are in indexes 3,4,5,6). 3. Get max of 2 int services from index 6.Up to 2 int services from index 6 are inserted into pBuffer (services that are in indexes 6,7).

See below - command parameters.

Parameters:
[in]indexOffset- The start index in the peer cache that from it the first service is returned.
[in]MaxServiceCount- The Max services that can be returned if existed or if not exceed the max index in the peer cache
[in]Flags- an ENUM number that means which service struct to use (means which types of service to fill)

  • use SlNetAppGetFullServiceWithTextIpv4List_t
  • use SlNetAppGetFullServiceIpv4List_t
  • use SlNetAppGetShortServiceIpv4List_t
[out]Buffer- The Services are inserted into this buffer. In the struct form according to the bit that is set in the Flags input parameter.
Returns:
ServiceFoundCount - The number of the services that were inserted into the buffer. zero means no service is found negative number means an error
See also:
sl_NetAppMDNSRegisterService
Note:
Warning:
if the out pBuffer size is bigger than an RX packet(1480), than an error is returned because there is no place in the RX packet. The size is a multiply of MaxServiceCount and size of service struct(that is set according to flag value).

Definition at line 146 of file cc3100_netapp.cpp.

int16_t sl_NetAppMDNSRegisterService ( const char *  pServiceName,
const uint8_t  ServiceNameLen,
const char *  pText,
const uint8_t  TextLen,
const uint16_t  Port,
const uint32_t  TTL,
uint32_t  Options 
) [inherited]

Register a new mDNS service.

This function registers a new mDNS service to the mDNS package and the DB.

This registered service is a service offered by the application. The service name should be full service name according to RFC of the DNS-SD - meaning the value in name field in the SRV answer. Example for service name: 1. PC1._ipp._tcp.local 2. PC2_server._ftp._tcp.local

If the option is_unique is set, mDNS probes the service name to make sure it is unique before starting to announce the service on the network. Instance is the instance portion of the service name.

Parameters:
[in]ServiceLenThe length of the service.
[in]TextLenThe length of the service should be smaller than 64.
[in]portThe port on this target host port.
[in]TTLThe TTL of the service
[in]Optionsbitwise parameters:

  • bit 0 - service is unique (means that the service needs to be unique)
  • bit 31 - for internal use if the service should be added or deleted (set means ADD).
  • bit 1-30 for future.
[in]pServiceNameThe service name. Example for service name:
1. PC1._ipp._tcp.local 2. PC2_server._ftp._tcp.local
[in]pTextThe description of the service. should be as mentioned in the RFC (according to type of the service IPP,FTP...)
Returns:
On success, zero is returned Possible error codes:
  • Maximum advertise services are already configured. Delete another existed service that is registered and then register again the new service
  • Trying to register a service that is already exists
  • Trying to delete service that does not existed
  • Illegal service name according to the RFC
  • Retry request
  • Illegal length of one of the mDNS Set functions
  • mDNS is not operational as the device has no IP.Connect the device to an AP to get an IP address.
  • mDNS parameters error
  • mDNS internal cache error
  • mDNS internal error
  • Adding a service is not allowed as it is already exist (duplicate service)
  • mDNS is not running
  • Host name error. Host name format is not allowed according to RFC 1033,1034,1035, 6763
  • List size buffer is bigger than internally allowed in the NWP (API get service list), change the APIs� parameters to decrease the size of the list
See also:
sl_NetAppMDNSUnRegisterService
Warning:
1) Temporary - there is an allocation on stack of internal buffer. Its size is NETAPP_MDNS_MAX_SERVICE_NAME_AND_TEXT_LENGTH.
It means that the sum of the text length and service name length cannot be bigger than NETAPP_MDNS_MAX_SERVICE_NAME_AND_TEXT_LENGTH.
If it is - An error is returned.
2) According to now from certain constraints the variables parameters are set in the attribute part (contain constant parameters)

Definition at line 405 of file cc3100_netapp.cpp.

int16_t sl_NetAppMDNSUnRegisterService ( const char *  pServiceName,
const uint8_t  ServiceNameLen 
) [inherited]

Unregister mDNS service This function deletes the mDNS service from the mDNS package and the database.

The mDNS service that is to be unregistered is a service that the application no longer wishes to provide.
The service name should be the full service name according to RFC of the DNS-SD - meaning the value in name field in the SRV answer.

Examples for service names: 1. PC1._ipp._tcp.local 2. PC2_server._ftp._tcp.local

Parameters:
[in]pServiceNameFull service name.
Example for service name: 1. PC1._ipp._tcp.local 2. PC2_server._ftp._tcp.local
[in]ServiceLenThe length of the service.
Returns:
On success, zero is returned
See also:
sl_NetAppMDNSRegisterService
Note:
Warning:
The size of the service length should be smaller than 255.

Definition at line 447 of file cc3100_netapp.cpp.

int16_t sl_NetAppPingStart ( const SlPingStartCommand_t *  pPingParams,
const uint8_t  family,
SlPingReport_t *  pReport,
const P_SL_DEV_PING_CALLBACK  pPingCallback 
) [inherited]

send ICMP ECHO_REQUEST to network hosts

Ping uses the ICMP protocol's mandatory ECHO_REQUEST

Parameters:
[in]pPingParamsPointer to the ping request structure:

  • if flags parameter is set to 0, ping will report back once all requested pings are done (as defined by TotalNumberOfAttempts).
  • if flags parameter is set to 1, ping will report back after every ping, for TotalNumberOfAttempts.
  • if flags parameter is set to 2, ping will stop after the first successful ping, and report back for the successful ping, as well as any preceding failed ones. For stopping an ongoing ping activity, set parameters IP address to 0
[in]familySL_AF_INET or SL_AF_INET6
[out]pReportPing pReport
[out]pCallbackCallback function upon completion. If callback is NULL, the API is blocked until data arrives
Returns:
On success, zero is returned. On error, -1 is returned SL_POOL_IS_EMPTY may be return in case there are no resources in the system In this case try again later or increase MAX_CONCURRENT_ACTIONS
See also:
sl_NetAppPingReport
Note:
Only one sl_NetAppPingStart can be handled at a time. Calling this API while the same command is called from another thread, may result in one of the two scenarios: 1. The command will wait (internal) until the previous command finish, and then be executed. 2. There are not enough resources and SL_POOL_IS_EMPTY error will return. In this case, MAX_CONCURRENT_ACTIONS can be increased (result in memory increase) or try again later to issue the command.
Warning:
Example:
        An example of sending 20 ping requests and reporting results to a callback routine when
                  all requests are sent:

                  // callback routine
                  void pingRes(SlPingReport_t* pReport)
                  {
                   // handle ping results
                  }

                  // ping activation
                  void PingTest()
                  {
                     SlPingReport_t report;
                     SlPingStartCommand_t pingCommand;

                     pingCommand.Ip = SL_IPV4_VAL(10,1,1,200);     // destination IP address is 10.1.1.200
                     pingCommand.PingSize = 150;                   // size of ping, in bytes
                     pingCommand.PingIntervalTime = 100;           // delay between pings, in milliseconds
                     pingCommand.PingRequestTimeout = 1000;        // timeout for every ping in milliseconds
                     pingCommand.TotalNumberOfAttempts = 20;       // max number of ping requests. 0 - forever
                     pingCommand.Flags = 0;                        // report only when finished

                     sl_NetAppPingStart( &pingCommand, SL_AF_INET, &report, pingRes ) ;
                 }

Definition at line 736 of file cc3100_netapp.cpp.

int32_t sl_NetAppSet ( const uint8_t  AppId,
const uint8_t  Option,
const uint8_t  OptionLen,
const uint8_t *  pOptionValue 
) [inherited]

Internal function for setting network application configurations.

Returns:
On success, zero is returned. On error, -1 is returned
Parameters:
[in]AppIdApplication id, could be one of the following:

  • SL_NET_APP_HTTP_SERVER_ID
  • SL_NET_APP_DHCP_SERVER_ID
  • SL_NET_APP_MDNS_ID
  • SL_NET_APP_DEVICE_CONFIG_ID
[in]SetOptionsset option, could be one of the following:

  • SL_NET_APP_DHCP_SERVER_ID
  • NETAPP_SET_DHCP_SRV_BASIC_OPT
  • SL_NET_APP_HTTP_SERVER_ID
  • NETAPP_SET_GET_HTTP_OPT_PORT_NUMBER
  • NETAPP_SET_GET_HTTP_OPT_AUTH_CHECK
  • NETAPP_SET_GET_HTTP_OPT_AUTH_NAME
  • NETAPP_SET_GET_HTTP_OPT_AUTH_PASSWORD
  • NETAPP_SET_GET_HTTP_OPT_AUTH_REALM
  • NETAPP_SET_GET_HTTP_OPT_ROM_PAGES_ACCESS
  • SL_NET_APP_MDNS_ID
  • NETAPP_SET_GET_MDNS_CONT_QUERY_OPT
  • NETAPP_SET_GET_MDNS_QEVETN_MASK_OPT
  • NETAPP_SET_GET_MDNS_TIMING_PARAMS_OPT
  • SL_NET_APP_DEVICE_CONFIG_ID
  • NETAPP_SET_GET_DEV_CONF_OPT_DEVICE_URN
  • NETAPP_SET_GET_DEV_CONF_OPT_DOMAIN_NAME
Parameters:
[in]OptionLenoption structure length
[in]pOptionValuespointer to the option structure
See also:
Note:
Warning:
            Set DHCP Server (AP mode) parameters example:

            SlNetAppDhcpServerBasicOpt_t dhcpParams;
            uint8_t outLen = sizeof(SlNetAppDhcpServerBasicOpt_t);
            dhcpParams.lease_time      = 4096;                         // lease time (in seconds) of the IP Address
            dhcpParams.ipv4_addr_start =  SL_IPV4_VAL(192,168,1,10);   // first IP Address for allocation. IP Address should be set as Hex number - i.e. 0A0B0C01 for (10.11.12.1)
            dhcpParams.ipv4_addr_last  =  SL_IPV4_VAL(192,168,1,16);   // last IP Address for allocation. IP Address should be set as Hex number - i.e. 0A0B0C01 for (10.11.12.1)
            sl_NetAppStop(SL_NET_APP_DHCP_SERVER_ID);                  // Stop DHCP server before settings
            sl_NetAppSet(SL_NET_APP_DHCP_SERVER_ID, NETAPP_SET_DHCP_SRV_BASIC_OPT, outLen, (uint8_t* )&dhcpParams);  // set parameters
            sl_NetAppStart(SL_NET_APP_DHCP_SERVER_ID);                 // Start DHCP server with new settings
            Set Device URN name example:

            Device name, maximum length of 33 characters
            Device name affects URN name, own SSID name in AP mode, and WPS file "device name" in WPS I.E (STA-WPS / P2P)
            In case no device URN name set, the default name is "mysimplelink"
            Allowed characters in device name are: 'a - z' , 'A - Z' , '0-9' and '-'

            uint8_t *my_device = "MY-SIMPLELINK-DEV";
            sl_NetAppSet (SL_NET_APP_DEVICE_CONFIG_ID, NETAPP_SET_GET_DEV_CONF_OPT_DEVICE_URN, strlen(my_device), (uint8_t *) my_device);

Definition at line 816 of file cc3100_netapp.cpp.

int16_t sl_NetAppStart ( const uint32_t  AppBitMap ) [inherited]

Starts a network application.

Gets and starts network application for the current WLAN mode

Parameters:
[in]AppBitMapapplication bitmap, could be one or combination of the following:

  • SL_NET_APP_HTTP_SERVER_ID
  • SL_NET_APP_DHCP_SERVER_ID
  • SL_NET_APP_MDNS_ID
Returns:
On error, negative number is returned
See also:
Stop one or more the above started applications using sl_NetAppStop
Note:
This command activates the application for the current WLAN mode (AP or STA)
Warning:
Example:
        For example: Starting internal HTTP server + DHCP server:
        sl_NetAppStart(SL_NET_APP_HTTP_SERVER_ID | SL_NET_APP_DHCP_SERVER_ID)

Definition at line 93 of file cc3100_netapp.cpp.

int16_t sl_NetAppStop ( const uint32_t  AppBitMap ) [inherited]

Stops a network application.

Gets and stops network application for the current WLAN mode

Parameters:
[in]AppBitMapapplication id, could be one of the following:

  • SL_NET_APP_HTTP_SERVER_ID
  • SL_NET_APP_DHCP_SERVER_ID
  • SL_NET_APP_MDNS_ID
Returns:
On error, negative number is returned
See also:
Note:
This command disables the application for the current active WLAN mode (AP or STA)
Warning:
Example:
        For example: Stopping internal HTTP server:
                             sl_NetAppStop(SL_NET_APP_HTTP_SERVER_ID);

Definition at line 113 of file cc3100_netapp.cpp.