view barpainet.c @ 1288:2c9aa272e75d libavformat

Switch license from GPL to LGPL, this file originates from libdv, which changed license from GPL to LGPL eventually, see http://sourceforge.net/mailarchive/forum.php?thread_id=3320020&forum_id=5458
author diego
date Sun, 03 Sep 2006 18:51:10 +0000
parents d70e50f1495f
children 8bf9be9bb107
line wrap: on
line source


#include <stdlib.h>
#include <strings.h>
#include "barpainet.h"

int inet_aton (const char * str, struct in_addr * add) {
        const char * pch = str;
        unsigned int add1 = 0, add2 = 0, add3 = 0, add4 = 0;

        add1 = atoi(pch);
        pch = strpbrk(pch,".");
        if (pch == 0 || ++pch == 0) goto done;
        add2 = atoi(pch);
        pch = strpbrk(pch,".");
        if (pch == 0 || ++pch == 0) goto done;
        add3 = atoi(pch);
        pch = strpbrk(pch,".");
        if (pch == 0 || ++pch == 0) goto done;
        add4 = atoi(pch);

done:
        add->s_addr=(add4<<24)+(add3<<16)+(add2<<8)+add1;

        return 1;
}