diff options
author | Timothy Pearson <tpearson@raptorengineering.com> | 2019-05-11 15:12:49 -0500 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-05-11 15:12:49 -0500 |
commit | 9e80202352dd49bdd9e67b8b906d86f058431505 (patch) | |
tree | 5673c17aad6e3833da8c4ff21b5a11f666ec9fbe /src/roms/u-boot/lib/net_utils.c | |
download | hqemu-master.zip hqemu-master.tar.gz |
Diffstat (limited to 'src/roms/u-boot/lib/net_utils.c')
-rw-r--r-- | src/roms/u-boot/lib/net_utils.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/roms/u-boot/lib/net_utils.c b/src/roms/u-boot/lib/net_utils.c new file mode 100644 index 0000000..8d66163 --- /dev/null +++ b/src/roms/u-boot/lib/net_utils.c @@ -0,0 +1,34 @@ +/* + * 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+ + */ + +#include <common.h> + +IPaddr_t string_to_ip(const char *s) +{ + IPaddr_t addr; + char *e; + int i; + + if (s == NULL) + return(0); + + for (addr=0, i=0; i<4; ++i) { + ulong val = s ? simple_strtoul(s, &e, 10) : 0; + addr <<= 8; + addr |= (val & 0xFF); + if (s) { + s = (*e) ? e+1 : e; + } + } + + return (htonl(addr)); +} |