Navigation


Changeset 1422:b1e8c5281d29 in freeDiameter for include


Ignore:
Timestamp:
Feb 19, 2020, 8:07:17 AM (4 years ago)
Author:
Luke Mewburn <luke@mewburn.net>
Branch:
default
Phase:
public
committer:
Luke Mewburn <luke@mewburn.net> 1582067308 -39600
Message:

libfdproto.h: fix typos and whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/freeDiameter/libfdproto.h

    r1414 r1422  
    3030* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS    *
    3131* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR *
    32 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY S_OUT OF THE USE OF THIS SOFTWARE, EVEN IF   *
     32* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY S_OUT OF THE USE OF THIS SOFTWARE, EVEN IF *
    3333* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                                                             *
    3434*********************************************************************************************************/
     
    963963 *
    964964 * PARAMETERS:
    965  *  dict        : Pointer to the dictionnary where the object is created
     965 *  dict        : Pointer to the dictionary where the object is created
    966966 *  type        : What kind of object must be created
    967967 *  data        : pointer to the data for the object.
     
    988988 *
    989989 * PARAMETERS:
    990  *  dict        : Pointer to the dictionnary where the object is searched
     990 *  dict        : Pointer to the dictionary where the object is searched
    991991 *  type        : type of object that is being searched
    992992 *  criteria    : how the object must be searched. See object-related sections below for more information.
     
    13811381enum {
    13821382        ENUMVAL_BY_STRUCT = 40, /* "what" points to a struct dict_enumval_request as defined below */
    1383         ENUMVAL_BY_NAME,        /* This cannot be used for researches */
    1384         ENUMVAL_BY_VALUE        /* This cannot be used for researches */
     1383        ENUMVAL_BY_NAME,        /* This cannot be used for searches */
     1384        ENUMVAL_BY_VALUE        /* This cannot be used for searches */
    13851385};
    13861386
     
    15111511};
    15121512
    1513 /* Struct used for some researchs */
     1513/* Struct used for some searches */
    15141514struct dict_avp_request_ex {
    15151515        struct {
     
    23752375 * Note: only the first instance of the AVP is returned by this function.
    23762376 * Note: only top-level AVPs are searched, not inside grouped AVPs.
    2377  * Use msg_browse if you need more advanced research features.
     2377 * Use msg_browse if you need more advanced search features.
    23782378 *
    23792379 * RETURN VALUE:
Note: See TracChangeset for help on using the changeset viewer.