Added silc_net_listener_get_port.
authorPekka Riikonen <priikone@silcnet.org>
Sun, 3 Dec 2006 20:48:34 +0000 (20:48 +0000)
committerPekka Riikonen <priikone@silcnet.org>
Sun, 3 Dec 2006 20:48:34 +0000 (20:48 +0000)
lib/silcutil/silcnet.c
lib/silcutil/silcnet.h

index 2897b9c87f9eff51e115dcfce31a5697b51acae4..5ef8fa82099d6ec71e8969a6805d91b7af259588 100644 (file)
@@ -4,7 +4,7 @@
 
   Author: Pekka Riikonen <priikone@silcnet.org>
 
-  Copyright (C) 1997 - 2005 Pekka Riikonen
+  Copyright (C) 1997 - 2006 Pekka Riikonen
 
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
 
 #include "silc.h"
 
+/* Returns bound port from listener */
+
+SilcUInt16 *silc_net_listener_get_port(SilcNetListener listener,
+                                      SilcUInt32 *port_count)
+{
+  SilcUInt16 *ports;
+  int i;
+
+  ports = silc_calloc(listener->socks_count, sizeof(*ports));
+  if (!ports)
+    return NULL;
+
+  for (i = 0; i < listener->socks_count; i++)
+    ports[i] = silc_net_get_local_port(listener->socks[i]);
+
+  if (port_count)
+    *port_count = listener->socks_count;
+
+  return ports;
+}
+
 /* Accepts a connection from a particular socket */
 
 int silc_net_accept_connection(int sock)
index 0950d8b42087c3cd25245a9bb994aebec0643ed4..30edce4e3e0b1572ce47d3ae978ff75cbc07b03e 100644 (file)
@@ -124,7 +124,11 @@ typedef void (*SilcNetCallback)(SilcNetStatus status,
  *    On success returns the SilcNetListener context, or NULL on error.
  *    If `require_fqdn' is TRUE the listener will require that the incoming
  *    connection has FQDN to be able to connect.  If the `lookup' is TRUE
- *    then the incoming connection hostname will be resolved.
+ *    then the incoming connection hostname will be resolved.  If the `port'
+ *    is zero (0), operating system will define it automatically.
+ *
+ *    The `callback' always delivers valid new stream.  It is not called
+ *    with an error status.
  *
  ***/
 SilcNetListener
@@ -134,6 +138,24 @@ silc_net_tcp_create_listener(const char **local_ip_addr,
                             SilcSchedule schedule,
                             SilcNetCallback callback, void *context);
 
+/****f* silcutil/SilcNetAPI/silc_net_listener_get_port
+ *
+ * SYNOPSIS
+ *
+ *    SilcUInt16 silc_net_listener_get_port(SilcNetListener listener);
+ *
+ * DESCRIPTION
+ *
+ *    Returns the ports to where the `listener' is bound.  This can be used
+ *    to get the port if none was specified in silc_net_tcp_create_listener.
+ *    Returns an array of ports of size of `port_count'.  The caller must
+ *    free the array with silc_free.  There are as many ports in the array
+ *    as there were IP addresses provided in silc_net_tcp_create_listener.
+ *
+ ***/
+SilcUInt16 *silc_net_listener_get_port(SilcNetListener listener,
+                                      SilcUInt32 *port_count);
+
 /****f* silcutil/SilcNetAPI/silc_net_close_listener
  *
  * SYNOPSIS
@@ -200,8 +222,9 @@ SilcAsyncOperation silc_net_tcp_connect(const char *local_ip_addr,
  *    silc_stream_write function and packets may be received using
  *    silc_stream_read function.
  *
- *    If the remote address is not provided then packets may only be received
- *    by using silc_net_udp_receive and sent only by using the function
+ *    If the remote address is not provided the stream is in connectionless
+ *    state.  This means that packets can be received only by using
+ *    silc_net_udp_receive and sent only by using the function
  *    silc_net_udp_send.
  *
  *    To receive packets the silc_stream_set_notifier must be called for the
@@ -260,9 +283,9 @@ int silc_net_udp_receive(SilcStream stream, char *remote_ip_addr,
  *
  * SYNOPSIS
  *
- *    void silc_net_udp_send(SilcStream stream,
- *                           const char *remote_ip_addr, int remote_port,
- *                           const unsigned char *data, SilcUInt32 data_len);
+ *    int silc_net_udp_send(SilcStream stream,
+ *                          const char *remote_ip_addr, int remote_port,
+ *                          const unsigned char *data, SilcUInt32 data_len);
  *
  * DESCRIPTION
  *
@@ -272,13 +295,15 @@ int silc_net_udp_receive(SilcStream stream, char *remote_ip_addr,
  *    used.  In those cases, this function must be used.  This may also be
  *    used even if the stream is connected.
  *
- *    This function always succeeds, however there is no guarantee that the
- *    packet is delivered, as UDP is unreliable transport protocol.
+ *    Returns the amount of data written, -1 if data could not be written
+ *    at this moment, or -2 if error occurred.  If -1 is returned the
+ *    notifier callback will later be called with SILC_STREAM_CAN_WRITE
+ *    status when stream is again ready for writing.
  *
  ***/
-void silc_net_udp_send(SilcStream stream,
-                      const char *remote_ip_addr, int remote_port,
-                      const unsigned char *data, SilcUInt32 data_len);
+int silc_net_udp_send(SilcStream stream,
+                     const char *remote_ip_addr, int remote_port,
+                     const unsigned char *data, SilcUInt32 data_len);
 
 /****f* silcutil/SilcNetAPI/silc_net_close_connection
  *
@@ -393,7 +418,8 @@ SilcBool silc_net_is_ip(const char *addr);
  *
  * SYNOPSIS
  *
- *    SilcBool silc_net_addr2bin(const char *addr, void *bin, SilcUInt32 bin_len);
+ *    SilcBool silc_net_addr2bin(const char *addr, void *bin,
+ *                               SilcUInt32 bin_len);
  *
  * DESCRIPTION
  *