[][src]Function interledger_btp::create_open_signup_server

pub fn create_open_signup_server<T, U, A>(
    address: SocketAddr,
    ildcp_info: IldcpResponse,
    store: U,
    next_outgoing: T
) -> impl Future<Item = BtpOutgoingService<T, A>, Error = ()> where
    T: OutgoingService<A> + Clone + Send + Sync + 'static,
    U: BtpStore<Account = A> + BtpOpenSignupStore<Account = A> + Clone + Send + Sync + 'static,
    A: BtpAccount + 'static, 

Same as create_server but it returns a BTP server that will accept new connections and create account records on the fly.

WARNING: Users of this should be very careful to prevent malicious users from creating huge numbers of accounts.