mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
parsers/extdisco: Document missing TODOs.
This commit is contained in:
parent
63733885d2
commit
9401b79a02
1 changed files with 6 additions and 5 deletions
|
@ -24,18 +24,18 @@ generate_attribute!(
|
||||||
);
|
);
|
||||||
|
|
||||||
generate_attribute!(
|
generate_attribute!(
|
||||||
/// TODO
|
/// The underlying transport protocol to be used when communicating with the service.
|
||||||
Transport, "transport", {
|
Transport, "transport", {
|
||||||
/// TODO
|
/// Use TCP as a transport protocol.
|
||||||
Tcp => "tcp",
|
Tcp => "tcp",
|
||||||
|
|
||||||
/// TODO
|
/// Use UDP as a transport protocol.
|
||||||
Udp => "udp",
|
Udp => "udp",
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
generate_attribute!(
|
generate_attribute!(
|
||||||
/// TODO
|
/// The service type as registered with the XMPP Registrar.
|
||||||
Type, "type", {
|
Type, "type", {
|
||||||
/// A server that provides Session Traversal Utilities for NAT (STUN).
|
/// A server that provides Session Traversal Utilities for NAT (STUN).
|
||||||
Stun => "stun",
|
Stun => "stun",
|
||||||
|
@ -46,7 +46,8 @@ generate_attribute!(
|
||||||
);
|
);
|
||||||
|
|
||||||
generate_attribute!(
|
generate_attribute!(
|
||||||
/// TODO
|
/// Username and password credentials are required and will need to be requested if not already
|
||||||
|
/// provided.
|
||||||
Restricted,
|
Restricted,
|
||||||
"restricted",
|
"restricted",
|
||||||
bool
|
bool
|
||||||
|
|
Loading…
Reference in a new issue