Ignore:
File:
1 edited

Legend:

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

    ra62ceaf rb7fd2a0  
    5656 *         extra characters at the end. ENOMEM if out of memory
    5757 */
    58 int inet_hostport_parse(const char *str, inet_hostport_t **rhp,
     58errno_t inet_hostport_parse(const char *str, inet_hostport_t **rhp,
    5959    char **endptr)
    6060{
     
    6565        char *aend;
    6666        const char *pend;
    67         int rc;
     67        errno_t rc;
    6868
    6969        hp = calloc(1, sizeof(inet_hostport_t));
     
    137137 * @return EOK on success, ENOMEM if out of memory
    138138 */
    139 int inet_hostport_format(inet_hostport_t *hp, char **rstr)
    140 {
    141         int rc;
     139errno_t inet_hostport_format(inet_hostport_t *hp, char **rstr)
     140{
     141        errno_t rc;
     142        int ret;
    142143        char *astr, *str;
    143144        char *hstr = NULL;
     
    154155                        hstr = astr;
    155156                } else {
    156                         rc = asprintf(&hstr, "[%s]", astr);
    157                         if (rc < 0) {
     157                        ret = asprintf(&hstr, "[%s]", astr);
     158                        if (ret < 0) {
    158159                                free(astr);
    159160                                return ENOMEM;
     
    171172        }
    172173
    173         rc = asprintf(&str, "%s:%u", hstr, hp->port);
    174         if (rc < 0)
     174        ret = asprintf(&str, "%s:%u", hstr, hp->port);
     175        if (ret < 0)
    175176                return ENOMEM;
    176177
     
    210211 * @return EOK on success, ENOENT on resolution failure
    211212 */
    212 int inet_hostport_lookup_one(inet_hostport_t *hp, ip_ver_t version,
     213errno_t inet_hostport_lookup_one(inet_hostport_t *hp, ip_ver_t version,
    213214    inet_ep_t *ep)
    214215{
    215216        dnsr_hostinfo_t *hinfo = NULL;
    216         int rc;
     217        errno_t rc;
    217218
    218219        inet_ep_init(ep);
     
    254255 *         ENOMEM if out of memory
    255256 */
    256 int inet_hostport_plookup_one(const char *str, ip_ver_t version, inet_ep_t *ep,
     257errno_t inet_hostport_plookup_one(const char *str, ip_ver_t version, inet_ep_t *ep,
    257258    char **endptr, const char **errmsg)
    258259{
    259260        inet_hostport_t *hp = NULL;
    260261        char *eptr;
    261         int rc;
     262        errno_t rc;
    262263
    263264        rc = inet_hostport_parse(str, &hp, endptr != NULL ? &eptr : NULL);
Note: See TracChangeset for help on using the changeset viewer.