summaryrefslogtreecommitdiffstats
path: root/socket_local.c
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2010-07-09 12:32:17 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2010-07-09 12:32:17 +0200
commit6c027b4de25a529908be895e7ff19236f4002a57 (patch)
treef70d3a400bbb9ba8a83e9d4ffcaa4b6e367fc8bb /socket_local.c
downloadcrypto-6c027b4de25a529908be895e7ff19236f4002a57.zip
crypto-6c027b4de25a529908be895e7ff19236f4002a57.tar.gz
initial commit, resurrect one of my realy old projects
Diffstat (limited to 'socket_local.c')
-rw-r--r--socket_local.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/socket_local.c b/socket_local.c
new file mode 100644
index 0000000..b676ee5
--- /dev/null
+++ b/socket_local.c
@@ -0,0 +1,17 @@
+#include <string.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include "socket.h"
+#include "uint16.h"
+
+int socket_local4(int s,char ip[4],u16 *port)
+{
+ struct sockaddr_in sa;
+ unsigned int dummy = sizeof sa;
+
+ if (getsockname(s,(struct sockaddr *) &sa,&dummy) == -1) return -1;
+ memcpy(ip,(char *) &sa.sin_addr,4);
+ u16_unpack_big((char *) &sa.sin_port,port);
+ return 0;
+}