Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/inet/hostport.c

    rb7fd2a0 ra62ceaf  
    5656 *         extra characters at the end. ENOMEM if out of memory
    5757 */
    58 errno_t inet_hostport_parse(const char *str, inet_hostport_t **rhp,
     58int inet_hostport_parse(const char *str, inet_hostport_t **rhp,
    5959    char **endptr)
    6060{
     
    6565        char *aend;
    6666        const char *pend;
    67         errno_t rc;
     67        int rc;
    6868
    6969        hp = calloc(1, sizeof(inet_hostport_t));
     
    137137 * @return EOK on success, ENOMEM if out of memory
    138138 */
    139 errno_t inet_hostport_format(inet_hostport_t *hp, char **rstr)
    140 {
    141         errno_t rc;
    142         int ret;
     139int inet_hostport_format(inet_hostport_t *hp, char **rstr)
     140{
     141        int rc;
    143142        char *astr, *str;
    144143        char *hstr = NULL;
     
    155154                        hstr = astr;
    156155                } else {
    157                         ret = asprintf(&hstr, "[%s]", astr);
    158                         if (ret < 0) {
     156                        rc = asprintf(&hstr, "[%s]", astr);
     157                        if (rc < 0) {
    159158                                free(astr);
    160159                                return ENOMEM;
     
    172171        }
    173172
    174         ret = asprintf(&str, "%s:%u", hstr, hp->port);
    175         if (ret < 0)
     173        rc = asprintf(&str, "%s:%u", hstr, hp->port);
     174        if (rc < 0)
    176175                return ENOMEM;
    177176
     
    211210 * @return EOK on success, ENOENT on resolution failure
    212211 */
    213 errno_t inet_hostport_lookup_one(inet_hostport_t *hp, ip_ver_t version,
     212int inet_hostport_lookup_one(inet_hostport_t *hp, ip_ver_t version,
    214213    inet_ep_t *ep)
    215214{
    216215        dnsr_hostinfo_t *hinfo = NULL;
    217         errno_t rc;
     216        int rc;
    218217
    219218        inet_ep_init(ep);
     
    255254 *         ENOMEM if out of memory
    256255 */
    257 errno_t inet_hostport_plookup_one(const char *str, ip_ver_t version, inet_ep_t *ep,
     256int inet_hostport_plookup_one(const char *str, ip_ver_t version, inet_ep_t *ep,
    258257    char **endptr, const char **errmsg)
    259258{
    260259        inet_hostport_t *hp = NULL;
    261260        char *eptr;
    262         errno_t rc;
     261        int rc;
    263262
    264263        rc = inet_hostport_parse(str, &hp, endptr != NULL ? &eptr : NULL);
Note: See TracChangeset for help on using the changeset viewer.