Skip to content
Snippets Groups Projects
net_utils.c 697 B
Newer Older
Dirk Behme's avatar
Dirk Behme committed
/*
 * Generic network code. Moved from net.c
 *
 * Copyright 1994 - 2000 Neil Russell.
 * Copyright 2000 Roland Borde
 * Copyright 2000 Paolo Scaffardi
 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
 * Copyright 2009 Dirk Behme, dirk.behme@googlemail.com
 *
 * SPDX-License-Identifier:	GPL-2.0+
Dirk Behme's avatar
Dirk Behme committed
 */

#include <common.h>

struct in_addr string_to_ip(const char *s)
	struct in_addr addr;
Dirk Behme's avatar
Dirk Behme committed
	char *e;
	int i;

Dirk Behme's avatar
Dirk Behme committed
	if (s == NULL)
	for (addr.s_addr = 0, i = 0; i < 4; ++i) {
Dirk Behme's avatar
Dirk Behme committed
		ulong val = s ? simple_strtoul(s, &e, 10) : 0;
		addr.s_addr <<= 8;
		addr.s_addr |= (val & 0xFF);
Dirk Behme's avatar
Dirk Behme committed
		if (s) {
			s = (*e) ? e+1 : e;
		}
	}

	addr.s_addr = htonl(addr.s_addr);
	return addr;