1 /* $OpenBSD: convert.c,v 1.5 2004/02/07 11:35:59 henning Exp $ */
2 /* $DragonFly: src/sbin/dhclient/convert.c,v 1.1 2008/08/30 16:07:58 hasso Exp $ */
5 * Safe copying of option values into and out of the option buffer,
6 * which can't be assumed to be aligned.
10 * Copyright (c) 1995, 1996 The Internet Software Consortium.
11 * All rights reserved.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 * 3. Neither the name of The Internet Software Consortium nor the names
23 * of its contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE INTERNET SOFTWARE CONSORTIUM AND
27 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
28 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
29 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
30 * DISCLAIMED. IN NO EVENT SHALL THE INTERNET SOFTWARE CONSORTIUM OR
31 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
34 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
35 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
36 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
37 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 * This software has been written for the Internet Software Consortium
41 * by Ted Lemon <mellon@fugue.com> in cooperation with Vixie
42 * Enterprises. To learn more about the Internet Software Consortium,
43 * see ``http://www.vix.com/isc''. To learn more about Vixie
44 * Enterprises, see ``http://www.vix.com''.
50 getULong(unsigned char *buf
)
54 memcpy(&ibuf
, buf
, sizeof(ibuf
));
59 getLong(unsigned char *(buf
))
63 memcpy(&ibuf
, buf
, sizeof(ibuf
));
68 getUShort(unsigned char *buf
)
72 memcpy(&ibuf
, buf
, sizeof(ibuf
));
77 getShort(unsigned char *buf
)
81 memcpy(&ibuf
, buf
, sizeof(ibuf
));
86 putULong(unsigned char *obuf
, u_int32_t val
)
88 u_int32_t tmp
= htonl(val
);
90 memcpy(obuf
, &tmp
, sizeof(tmp
));
94 putLong(unsigned char *obuf
, int32_t val
)
96 int32_t tmp
= htonl(val
);
98 memcpy(obuf
, &tmp
, sizeof(tmp
));
102 putUShort(unsigned char *obuf
, unsigned int val
)
104 u_int16_t tmp
= htons(val
);
106 memcpy(obuf
, &tmp
, sizeof(tmp
));
110 putShort(unsigned char *obuf
, int val
)
112 int16_t tmp
= htons(val
);
114 memcpy(obuf
, &tmp
, sizeof(tmp
));