You are here

function sf_notifications_default_allowed_ips in Salesforce Suite 6.2

Same name and namespace in other branches
  1. 7.2 sf_notifications/sf_notifications.module \sf_notifications_default_allowed_ips()

Return an array of CIDR notation masks for allowed Salesforce IPs. These are taken from Knowledge Article #102757. https://help.salesforce.com/apex/HTViewSolution?id=102757&language=en

2 calls to sf_notifications_default_allowed_ips()
sf_notifications_allowed_ips in sf_notifications/sf_notifications.module
Access callback for SALESFORCE_PATH_NOTIFICATIONS_ENDPOINT
sf_notifications_settings_form in sf_notifications/sf_notifications.admin.inc
SF Notifications settings

File

sf_notifications/sf_notifications.module, line 93

Code

function sf_notifications_default_allowed_ips() {
  return array(
    '204.14.232.0/23',
    '204.14.237.0/24',
    '96.43.144.0/22',
    '96.43.148.0/22',
    '204.14.234.0/23',
    '204.14.238.0/23',
    '202.129.242.0/25',
  );
}