mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-06-10 08:50:18 +00:00
15 lines
279 B
C
15 lines
279 B
C
|
|
/*
|
||
|
|
* Copyright (C) Thomas Bernard
|
||
|
|
* Copyright (C) HexChat contributors
|
||
|
|
* Copyright (C) ZoiteChat contributors
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef ZOITECHAT_UPNP_H
|
||
|
|
#define ZOITECHAT_UPNP_H
|
||
|
|
|
||
|
|
void upnp_init(void);
|
||
|
|
void upnp_add_redir(const char *addr, int port);
|
||
|
|
void upnp_rem_redir(int port);
|
||
|
|
|
||
|
|
#endif
|