CLEANUP: proxy: Remove proxy_tbl_by_name

It is no longer required as of 1b8e68e89a
and is no longer used when #306 is fixed.
This commit is contained in:
Tim Duesterhus 2019-09-29 23:09:54 +02:00 committed by Willy Tarreau
parent 9fe7c6376a
commit 07626eafa2

View File

@ -97,14 +97,6 @@ static inline struct proxy *proxy_be_by_name(const char *name)
return proxy_find_by_name(name, PR_CAP_BE, 0);
}
/* Find the table having name <name>. The name may also start with a '#' to
* reference a numeric id. NULL is returned if not found.
*/
static inline struct proxy *proxy_tbl_by_name(const char *name)
{
return proxy_find_by_name(name, 0, 1);
}
/* this function initializes all timeouts for proxy p */
static inline void proxy_reset_timeouts(struct proxy *proxy)
{