Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SmppPduBindReceiver.cs « SmppServerLib - github.com/ClusterM/smpp-sharp-lib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22430d0d30392beb16e4f477a819a19da4321b5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Flex.Cluster.Smpp
{
    public class SmppPduBindReceiver : SmppPduBindBase
    {
        protected override SmppPdu.SmppCommandType GetCommandType()
        {
            return SmppCommandType.bind_receiver;
        }

        public SmppPduBindReceiver(string systemId, string password, string systemType, byte interfaceVersion, byte addrTon, byte addrNpi, string addrRange)
            : base(SmppCommandType.bind_receiver, systemId, password, systemType, interfaceVersion, addrTon, addrNpi, addrRange)
        {
        }

        public SmppPduBindReceiver(byte[] bytes)
            : this(bytes, (uint)bytes.Length)
        {
        }
        public SmppPduBindReceiver(byte[] bytes, uint length)
            : base(bytes, length)
        {
        }
    }
}