Renamed verification functions

This commit is contained in:
James Booth
2015-05-27 23:11:45 +01:00
parent e7b240242f
commit 7acf4f84e1
2 changed files with 4 additions and 4 deletions

View File

@@ -37,13 +37,13 @@ stbbr_for(char *id, char *stream)
}
int
stbbr_verify_last(char *stanza)
stbbr_last_received(char *stanza)
{
return verify_last(stanza);
}
int
stbbr_verify(char *stanza)
stbbr_received(char *stanza)
{
return verify_any(stanza);
}

View File

@@ -9,8 +9,8 @@ void stbbr_set_timeout(int seconds);
int stbbr_auth_passwd(char *password);
void stbbr_for(char *id, char *stream);
int stbbr_verify(char *stanza);
int stbbr_verify_last(char *stanza);
int stbbr_received(char *stanza);
int stbbr_last_received(char *stanza);
void stbbr_send(char *stream);