usock: add usock_port() for convenient use of numeric ports
authorJo-Philipp Wich <jow@openwrt.org>
Mon, 22 Sep 2014 16:15:58 +0000 (18:15 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Tue, 23 Sep 2014 10:01:00 +0000 (12:01 +0200)
commitfa73496098893e90330040b8f43f2773b42eed12
tree09f590ace45e78dd8ff5b2b6dfe74fdc34ad3bde
parentdffbc09baf71b294185a36048166d00066d433b5
usock: add usock_port() for convenient use of numeric ports

Add a new helper function usock_port() which converts the given numeric port number
into a string using a private static buffer. This way a calling application can
conveniently use numeric port arguments without having to convert them before:

  int fd = usock(USOCK_UDP, "example.org", usock_port(80));

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
usock.c
usock.h