Menu

[r40]: / trunk / WhatsappClient / WhatsAppProtocol / WhatsContstants.cs  Maximize  Restore  History

Download this file

29 lines (24 with data), 1.1 kB

 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
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
class WhatsConstants
{
#region ServerConstants
public const string WhatsAppDigest = "xmpp/s.whatsapp.net";
public const string WhatsAppHost = "bin-short.whatsapp.net";
public const string WhatsAppRealm = "s.whatsapp.net";
public const string WhatsAppServer = "s.whatsapp.net";
public const string WhatsGroupChat = "g.us";
public const string WhatsAppVer = "2.8.4";
public const int WhatsPort = 5222;
public const string IphoneDevice = "iPhone";
public const string UserAgend = "WhatsApp/2.8.4 iPhone_OS/6.0.1 Device/iPhone_4S";
public const string WhatsBuildHash = "889d4f44e479e6c38b4a834c6d8417815f999abe";
#endregion
#region ParserConstants
public static NumberStyles WhatsAppNumberStyle = (NumberStyles.AllowDecimalPoint | NumberStyles.AllowLeadingSign);
public static DateTime UnixEpoch = new DateTime(0x7b2, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc);
#endregion
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.