libubox: drop legacy json-c support
[project/libubox.git] / usock.c
diff --git a/usock.c b/usock.c
index 6458151..64eab9e 100644 (file)
--- a/usock.c
+++ b/usock.c
@@ -1,3 +1,21 @@
+/*
+ * usock - socket helper functions
+ *
+ * Copyright (C) 2010 Steven Barth <steven@midlink.org>
+ * Copyright (C) 2011-2012 Felix Fietkau <nbd@openwrt.org>
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/un.h>
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/un.h>
@@ -8,6 +26,7 @@
 #include <errno.h>
 #include <string.h>
 #include <stdbool.h>
 #include <errno.h>
 #include <string.h>
 #include <stdbool.h>
+#include <stdio.h>
 
 #include "usock.h"
 
 
 #include "usock.h"
 
@@ -83,6 +102,18 @@ static int usock_inet(int type, const char *host, const char *service, int sockt
        return sock;
 }
 
        return sock;
 }
 
+const char *usock_port(int port)
+{
+       static char buffer[sizeof("65535\0")];
+
+       if (port < 0 || port > 65535)
+               return NULL;
+
+       snprintf(buffer, sizeof(buffer), "%u", port);
+
+       return buffer;
+}
+
 int usock(int type, const char *host, const char *service) {
        int socktype = ((type & 0xff) == USOCK_TCP) ? SOCK_STREAM : SOCK_DGRAM;
        bool server = !!(type & USOCK_SERVER);
 int usock(int type, const char *host, const char *service) {
        int socktype = ((type & 0xff) == USOCK_TCP) ? SOCK_STREAM : SOCK_DGRAM;
        bool server = !!(type & USOCK_SERVER);