projects
/
l2tpns.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Update debian changelog
[l2tpns.git]
/
util.c
diff --git
a/util.c
b/util.c
index
78ec78b
..
d4dbd4f
100644
(file)
--- a/
util.c
+++ b/
util.c
@@
-1,7
+1,5
@@
/* Misc util functions */
/* Misc util functions */
-char const *cvs_id_util = "$Id: util.c,v 1.14 2006/04/05 01:45:57 bodea Exp $";
-
#include <unistd.h>
#include <errno.h>
#include <sched.h>
#include <unistd.h>
#include <errno.h>
#include <sched.h>
@@
-30,6
+28,17
@@
char *fmtaddr(in_addr_t addr, int n)
return strcpy(addrs[n], inet_ntoa(in));
}
return strcpy(addrs[n], inet_ntoa(in));
}
+char *fmtMacAddr(uint8_t *pMacAddr)
+{
+ static char strMAC[2*ETH_ALEN];
+
+ sprintf(strMAC, "%02X:%02X:%02X:%02X:%02X:%02X",
+ pMacAddr[0], pMacAddr[1], pMacAddr[2],
+ pMacAddr[3], pMacAddr[4], pMacAddr[5]);
+
+ return strMAC;
+}
+
void *shared_malloc(unsigned int size)
{
void * p;
void *shared_malloc(unsigned int size)
{
void * p;