All Projects → go-gsm → ucp

go-gsm / ucp

Licence: MIT license
UCP protocol in Go

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to ucp

ucp-cli
command-line interface for sending and receiving SMS via UCP protocol
Stars: ✭ 15 (-62.5%)
Mutual labels:  ucp, sms, emi
smpp.net
Short Message Peer-to-Peer (SMPP) .NET library
Stars: ✭ 29 (-27.5%)
Mutual labels:  sms, smsc
smscenter
Класс для работы с сервисом smsc.ru (SMS-Центр)
Stars: ✭ 42 (+5%)
Mutual labels:  sms, smsc
RTP-Audio-and-Video-for-the-Internet-Chinese-Version
No description or website provided.
Stars: ✭ 30 (-25%)
Mutual labels:  protocol
spec
Tox Protocol Specification
Stars: ✭ 29 (-27.5%)
Mutual labels:  protocol
helios
A Java-based Sega Mega Drive/Genesis emulator. And other systems too.
Stars: ✭ 14 (-65%)
Mutual labels:  sms
librelp
OFFICIAL librelp repository on github
Stars: ✭ 25 (-37.5%)
Mutual labels:  protocol
encrypted-smiley-secure-protocol
Node.JS library Encrypted Smiley ® Secure Protocol (eSSP, SSP)
Stars: ✭ 22 (-45%)
Mutual labels:  protocol
FullProxy
Bind and reverse connection based, SOCKS5, HTTP and PortForward based portable proxy
Stars: ✭ 22 (-45%)
Mutual labels:  protocol
ampleforth-contracts
Smart contracts for Ampleforth Protocol (working name uFragments)
Stars: ✭ 238 (+495%)
Mutual labels:  protocol
dystopia
Anonymity on the Internet by Transparent way.
Stars: ✭ 97 (+142.5%)
Mutual labels:  protocol
Computer-Networks
GBN and SR simulation, Distance Vector Algorithm Simulation
Stars: ✭ 21 (-47.5%)
Mutual labels:  protocol
yahdlc
yahdlc - Yet Another HDLC implementation
Stars: ✭ 47 (+17.5%)
Mutual labels:  protocol
android-messages-desktop
Android Messages as a Cross-platform Desktop App
Stars: ✭ 144 (+260%)
Mutual labels:  sms
ohd
Garage Door Monitor (OverHeadDoor) - Python3, Raspbian
Stars: ✭ 126 (+215%)
Mutual labels:  sms
FreeRADIUS-Server-Configuration-Tool
🎯 FreeRADIUS Server Configuration Tool 🖥️
Stars: ✭ 33 (-17.5%)
Mutual labels:  protocol
kavenegar-php
Kavenegar API Client Writen In PHP
Stars: ✭ 45 (+12.5%)
Mutual labels:  sms
LaravelSms
package for send sms with laravel (All gatways in Iran)
Stars: ✭ 14 (-65%)
Mutual labels:  sms
woapp
web模拟安卓操作系统,php开发,内置文件管理,电话,短信,拍照,用在树莓派上可做智能家居,视频监控,机顶盒等……
Stars: ✭ 22 (-45%)
Mutual labels:  sms
security-code
A powerful security code input supports dynamic configuration of the number of input boxes.
Stars: ✭ 63 (+57.5%)
Mutual labels:  sms

Build Status GoDoc Coverage StatusGo Report Card

ucp

ucp is a pure Go implementation of the UCP protocol primarily used to connect to short message service centres (SMSCs), in order to send and receive short messages (SMS).

setup

  • go 1.11
  • git

installation

go get github.com/go-gsm/ucp

usage

opt := &ucp.Options{
  Addr:       SMSC_ADDR,
  User:       SMSC_USER,
  Password:   SMSC_PASSWORD,
  AccessCode: SMSC_ACCESSCODE,
}
client := ucp.New(opt)
client.Connect()
defer client.Close()
ids, err := client.Send(sender, receiver, message)

demo

ucp-cli

demo

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].