1// Copyright 2013 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// Package xmpp implements the XMPP IM protocol, as specified in RFC 6120 and
6// 6121.
7package xmpp
8
9import "github.com/coyim/coyim/xmpp/data"
10
11// inflight contains the details of a pending request to which we are awaiting
12// a reply.
13type inflight struct {
14	// replyChan is the channel to which we'll send the reply.
15	replyChan chan<- data.Stanza
16	// to is the address to which we sent the request.
17	to string
18}
19