Guest User

Untitled

a guest
May 27th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. # DEBUG LEVELS: 0 - none, 1 - Error, 2 - Warning, 3 - Info
  2. # 4 - Debug, 5 - Verbose
  3. DEBUG_LEVEL =0
  4.  
  5. # Intermediate position report, 1=enable, 0=disable
  6. INTERMEDIATE_POS=0
  7.  
  8. # Accuracy threshold for intermediate positions
  9. # less accurate positions are ignored, 0 for passing all positions
  10. ACCURACY_THRES=0
  11.  
  12. # Report supl ref location as position, 1=enable, 0=disable
  13. REPORT_POSITION_USE_SUPL_REFLOC=1
  14.  
  15. # Wiper (wifi positioning), 1=enable, 0=disable
  16. ENABLE_WIPER=1
  17.  
  18. ################################
  19. ##### AGPS server settings #####
  20. ################################
  21.  
  22. # FOR SUPL SUPPORT, set the following
  23. SUPL_HOST=supl.google.com
  24. SUPL_PORT=7276
  25. SUPL_NO_SECURE_PORT=3425
  26. SUPL_SECURE_PORT=7275
  27. SUPL_TLS_HOST=FQDN
  28. SUPL_TLS_CERT=/etc/SuplRootCert
  29.  
  30. # FOR C2K PDE SUPPORT, set the following
  31. C2K_HOST=c2k.pde.com
  32. C2K_PORT=1234
  33.  
  34. CURRENT_CARRIER=common
  35. DEFAULT_AGPS_ENABLE=TRUE
  36. DEFAULT_SSL_ENABLE=FALSE
  37.  
  38. # TRUE for "User Plane", FALSE for "Control Plane"
  39. DEFAULT_USER_PLANE=TRUE
Add Comment
Please, Sign In to add comment