Changeset 577 for trunk/include


Ignore:
Timestamp:
May 1, 2022, 12:24:37 AM (3 years ago)
Author:
katerina
Message:

Implement ticket #465 (server option to register alias for hostname).

Location:
trunk/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/sh_cat.h

    r525 r577  
    229229 MSG_TCP_EBGN,   
    230230                 
    231  MSG_TCP_CREG,   
     231 MSG_TCP_CREG,
     232 MSG_TCP_AREG,
    232233 MSG_TCP_FAUTH,   
    233234 MSG_TCP_TIMOUT, 
  • trunk/include/sh_string.h

    r265 r577  
    6868 * lengths in 'lengths'.
    6969 * A single delimiter will return two empty fields.
     70 * The returned array is allocated memory, and its fields
     71 * are modified parts of the 'line' parameter.
    7072 */
    7173char ** split_array(char *line, unsigned int * nfields,
     
    7880 * An empty string will return zero fields.
    7981 * If nfields < actual fields, last string will be remainder.
     82 * The returned array is allocated memory, and its fields
     83 * are modified parts of the 'line' parameter.
    8084 */
    8185char ** split_array_ws(char *line, unsigned int * nfields, size_t * lengths);
  • trunk/include/sh_xfer.h

    r481 r577  
    8484void sh_xfer_html_write(void);
    8585
     86/* register an alias
     87 */
     88int sh_xfer_register_alias (const char * str);
     89
    8690/* register a client
    8791 */
Note: See TracChangeset for help on using the changeset viewer.