mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-01-05 16:41:53 +00:00
25 lines
510 B
C
25 lines
510 B
C
|
/*
|
||
|
* BIRD -- An implementation of the SSH protocol for the RPKI transport
|
||
|
*
|
||
|
* This transport implementation uses libssh (http://www.libssh.org/)
|
||
|
*
|
||
|
* (c) 2015 CZ.NIC
|
||
|
*
|
||
|
* This file was a part of RTRlib: http://rpki.realmv6.org/
|
||
|
*
|
||
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
||
|
*/
|
||
|
|
||
|
#ifndef _BIRD_RPKI_SSH_TRANSPORT_H_
|
||
|
#define _BIRD_RPKI_SSH_TRANSPORT_H_
|
||
|
|
||
|
#include "transport.h"
|
||
|
|
||
|
struct rpki_tr_ssh {
|
||
|
const char *ident;
|
||
|
};
|
||
|
|
||
|
void rpki_tr_ssh_init(struct rpki_tr_sock *tr);
|
||
|
|
||
|
#endif
|