tfBootpUserStop

Jump to: navigation, search

Table of Contents >> Optional Protocols >> BOOTP User Controlled Configuration


#include <trsocket.h>


int tfBootpUserStop (
ttUserInterface interfaceHandle,
int userIndex
);


Function Description

This function cancels a BOOTP request that had been previous started with tfBootpUserStart. This function can also be called when the user no longer needs to access the user BOOT entry.


Parameters

  • interfaceHandle
    This is the Ethernet interface handle.
  • userIndex
    This is the userIndex from tfBootpUserStart which must be between 0 and


Returns

  • TM_EINVAL
    This indicates failure. The kernel found invalid arguments in the call.
  • TM_ENOERROR
    This indicates success. bootpNotifyFuncPtr will not be called.


Usage

Call this function to cancel a a BOOTP request or release a user BOOT entry. This should be called with the userIndex that was used when calling tfBootpUserStart


Table of Contents >> Optional Protocols >> BOOTP User Controlled Configuration