Lines Matching refs:addr
128 * @param addr a pointer to which to save the IP address
135 netconn_getaddr(struct netconn *conn, ip_addr_t *addr, u16_t *port, u8_t local)
141 LWIP_ERROR("netconn_getaddr: invalid addr", (addr != NULL), return ERR_ARG;);
146 msg.msg.msg.ad.ipaddr = addr;
160 * @param addr the local IP address to bind the netconn to (use IP_ADDR_ANY
166 netconn_bind(struct netconn *conn, ip_addr_t *addr, u16_t port)
175 msg.msg.msg.bc.ipaddr = addr;
187 * @param addr the remote IP address to connect to
192 netconn_connect(struct netconn *conn, ip_addr_t *addr, u16_t port)
201 msg.msg.msg.bc.ipaddr = addr;
490 ip_addr_set_any(&buf->addr);
544 * @param addr the remote IP address to which to send the data
549 netconn_sendto(struct netconn *conn, struct netbuf *buf, ip_addr_t *addr, u16_t port)
552 ip_addr_set(&buf->addr, addr);
746 * @param addr a preallocated ip_addr_t where to store the resolved IP address
753 netconn_gethostbyname(const char *name, ip_addr_t *addr)
760 LWIP_ERROR("netconn_gethostbyname: invalid addr", (addr != NULL), return ERR_ARG;);
768 msg.addr = addr;