Changeset 9ce8b01 in nscp for include/Socket.h
- Timestamp:
- 11/15/06 20:53:39 (7 years ago)
- Branches:
- master, 0.4.0, 0.4.1, 0.4.2, stable
- Children:
- 1a22e52
- Parents:
- 7aef770
- File:
-
- 1 edited
-
include/Socket.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
include/Socket.h
r76aafc4 r9ce8b01 1 1 #pragma once 2 #include "resource.h"3 2 #include <Thread.h> 4 3 #include <Mutex.h> … … 472 471 if (cachedAddresses_) { 473 472 for (host_list::iterator it = allowedHosts_.begin();it!=allowedHosts_.end();++it) { 474 if (((*it).length() > 0) && ( std::isalpha((*it)[0]))) {473 if (((*it).length() > 0) && (isalpha((*it)[0]))) { 475 474 std::string s = (*it); 476 475 try { … … 489 488 if (!cachedAddresses_) { 490 489 for (host_list::iterator it = allowedHosts_.begin();it!=allowedHosts_.end();++it) { 491 if (((*it).length() > 0) && ( std::isalpha((*it)[0]))) {490 if (((*it).length() > 0) && (isalpha((*it)[0]))) { 492 491 std::string s = (*it); 493 492 try {
Note: See TracChangeset
for help on using the changeset viewer.








