~ubuntu-branches/ubuntu/wily/trafficserver/wily

« back to all changes in this revision

Viewing changes to iocore/dns/SRV.cc

  • Committer: Package Import Robot
  • Author(s): Adam Conrad
  • Date: 2012-12-17 22:28:16 UTC
  • mfrom: (5.1.8 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20121217222816-7xwjsx5k76zkb63d
Tags: 3.2.0-1ubuntu1
* Revert FreeBSD strerror_r() fixes that give errors with glibc 2.16.
* Apply patch from Konstantinos Margaritis to define barriers on ARM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/** @file
2
2
 
3
 
  A brief file description
 
3
  Support for SRV records
4
4
 
5
5
  @section license License
6
6
 
19
19
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20
20
  See the License for the specific language governing permissions and
21
21
  limitations under the License.
22
 
 */
23
 
 
24
 
/*
25
 
 
26
 
  indent -ncs -nut -npcs -l 132 -br SRV.cc
27
 
 
 
22
 
 
23
  @section description
28
24
        Support for SRV records
29
25
 
30
26
        http://www.faqs.org/rfcs/rfc2782.html
31
27
        http://www.nongnu.org/ruli/
32
28
        http://libsrv.cvs.sourceforge.net/libsrv/libsrv/src/libsrv.c
 
29
 */
33
30
 
34
 
*/
35
31
 
36
32
#include "P_DNS.h"
37
33
 
128
124
  Debug("dns_srv", "using SRV record of: pri: %d, wei: %d, port: %d, host: %s",
129
125
        i->getPriority(), i->getWeight(), i->getPort(), i->getHost());
130
126
 
131
 
  ink_strncpy(ret_val, i->getHost(), MAXDNAME);
132
 
  ret_val[MAXDNAME - 1] = '\0';
 
127
  ink_strlcpy(ret_val, i->getHost(), MAXDNAME);
133
128
  if (strcmp(ret_val, "") == 0 || strcmp(ret_val, ".") == 0) {
134
129
    goto err;
135
130
  }