Commit 2e080203d3dd97f5c59113c89ef5eded09607421
1 parent
495e20ed
Exists in
master
and in
1 other branch
Incluindo caixa de diálogo com o estado da conexão SSL
Showing
1 changed file
with
6 additions
and
0 deletions
Show diff stats
widget.c
| ... | ... | @@ -1432,6 +1432,12 @@ void v3270_set_host(GtkWidget *widget, const gchar *uri) |
| 1432 | 1432 | lib3270_set_host(GTK_V3270(widget)->host,uri); |
| 1433 | 1433 | } |
| 1434 | 1434 | |
| 1435 | +const gchar * v3270_get_host(GtkWidget *widget) | |
| 1436 | +{ | |
| 1437 | + g_return_val_if_fail(GTK_IS_V3270(widget),""); | |
| 1438 | + return lib3270_get_host(GTK_V3270(widget)->host); | |
| 1439 | +} | |
| 1440 | + | |
| 1435 | 1441 | const gchar * v3270_get_session_name(GtkWidget *widget) |
| 1436 | 1442 | { |
| 1437 | 1443 | if(!GTK_IS_V3270(widget) || GTK_V3270(widget)->session_name == NULL) | ... | ... |